forked from mirror/readline
fixes bugs
This commit is contained in:
parent
879224ddc9
commit
4d6d6c223f
13
README.md
13
README.md
|
@ -24,12 +24,11 @@ You can read the source code in [example/main.go](https://github.com/chzyer/read
|
|||
|
||||
# Todo
|
||||
|
||||
* Vim mode (WIP)
|
||||
* More funny examples
|
||||
* Support dumb/eterm-color terminal in emacs
|
||||
|
||||
# Features
|
||||
* Support emacs/vi mode, almost all basic features GNU-Readline support
|
||||
* Support emacs/vi mode, almost all basic features that GNU-Readline is supported
|
||||
* zsh-style backward/forward history search
|
||||
* zsh-style completion
|
||||
* Readline auto refresh when others write to Stdout while editing(it needs specify the Stdout/Stderr provided by *readline.Instance to others).
|
||||
|
@ -205,16 +204,6 @@ Notice: `Meta`+`B` is equals with `Alt`+`B` in windows.
|
|||
| `Ctrl`+`C` / `Ctrl`+`G` | Exit Complete Select Mode |
|
||||
| Other | Exit Complete Select Mode |
|
||||
|
||||
* Vim Mode (set Config.VimMode to true)
|
||||
|
||||
| Mode | Shortcut | Comment |
|
||||
|--------+----------+---------------------------------------------|
|
||||
| Normal | `j` | Next line (in history) |
|
||||
| | `k` | Prev line (in history) |
|
||||
| | `h` | Move Backward |
|
||||
| | `l` | Move Forward |
|
||||
|
||||
|
||||
# Tested with
|
||||
|
||||
| Environment | $TERM |
|
||||
|
|
4
vim.go
4
vim.go
|
@ -53,9 +53,9 @@ func (o *opVim) handleVimNormalMovement(r rune, readNext func() rune) (t rune, h
|
|||
rb.MoveToLineStart()
|
||||
case '$':
|
||||
rb.MoveToLineEnd()
|
||||
case 'b':
|
||||
case 'b', 'B':
|
||||
rb.MoveToPrevWord()
|
||||
case 'w':
|
||||
case 'w', 'W', 'e', 'E':
|
||||
rb.MoveToNextWord()
|
||||
case 'f', 'F', 't', 'T':
|
||||
next := readNext()
|
||||
|
|
Loading…
Reference in New Issue