Make ready for v0.1.0

This commit is contained in:
erroneousboat 2016-10-22 09:41:35 +02:00
parent ada81bbfeb
commit 09f01ed2c1
2 changed files with 9 additions and 5 deletions

View File

@ -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)
@ -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)

View File

@ -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++
}
}