blob: 3f91ea909c595c535a1904c7318daf060918ae88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
## Overview
* There are only currently two modes, command mode and insert mode.
* Motions have repeat support, `d3w` will delete three words.
* Insert mode can be entered using `i`, `I`, `a`, `A`, `o`, or `O`.
* Registers are a work in progress
* What Exists:
* `a-z` - Named registers
* `A-Z` - Appending to named registers
* `*`, `+` - System clipboard registers, although there's no distinction between the two currently.
* `%` - Current filename read-only register
* `_` - Blackhole register
* What Doesn't Exist:
* default buffer doesn't yet save on delete operations.
* Setting `wrapLeftRightMotion` acts like VIM's whichwrap=h,l,<,>
|