Skip to content

Commit

Permalink
Make ready for v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbruinsslot committed Oct 22, 2016
1 parent ce174cb commit 0b78356
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
Slack-Term
==========

A [Slack](https://slack.com) client for your terminal. As of now the
application is in a beta state. See [issues](https://github.com/erroneousboat/slack-term/issues)
for known bugs and for features I'm working on at the moment
A [Slack](https://slack.com) client for your terminal.

![Screenshot](/screenshot.png?raw=true)

Expand All @@ -12,7 +10,13 @@ Getting started

1. [Download](https://github.com/erroneousboat/slack-term/releases) a
compatible version for your system, and place where you can access it from
the command line like, `~/bin`, `/usr/local/bin`, or `/usr/local/sbin`.
the command line like, `~/bin`, `/usr/local/bin`, or `/usr/local/sbin`. Or
get it via Go:


```bash
$ go get github.com/erroneouboat/slack-term
```

2. Get a slack token, click [here](https://api.slack.com/docs/oauth-test-tokens)

Expand Down
2 changes: 1 addition & 1 deletion components/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (i *Input) Delete() {

// MoveCursorRight will increase the current CursorPosition with 1
func (i *Input) MoveCursorRight() {
if i.CursorPosition < len(i.Par.Text) {
if i.CursorPosition < len(i.Text) {
i.CursorPosition++
}
}
Expand Down

0 comments on commit 0b78356

Please sign in to comment.