Make ready for v0.1.0
This commit is contained in:
parent
ada81bbfeb
commit
09f01ed2c1
12
README.md
12
README.md
@ -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)
|
||||
|
||||
|
@ -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++
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user