diff options
author | Antoni Stevenet | 2021-06-05 00:25:46 +0000 |
---|---|---|
committer | GitHub | 2021-06-05 00:25:46 +0000 |
commit | a1f4b8f92b50fbb446400b167b344cdf189978f9 (patch) | |
tree | a5e83e878c97e51fe81ae747c86bccf0cce22be3 /book | |
parent | 72eaaaac995cf55d37994c24cc0215c8370c6443 (diff) |
Add home-end keymaps, (as kakoune/vim do) (#83)
* add home-end keymaps
* implement extend methods for extend_line_start, extend_line_end
* add home-end mappings to keymaps.md
* add ^-$ extend mappings for extend mode
* pass cargo linter
Diffstat (limited to 'book')
-rw-r--r-- | book/src/keymap.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md index 234766ca..003d0845 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -17,6 +17,8 @@ | f | find next char | | T | find 'till previous char | | F | find previous char | +| Home | move to the start of the line | +| End | move to the end of the line | | m | Jump to matching bracket | | PageUp | Move page up | | PageDown | Move page down | |