diff options
Diffstat (limited to 'atom/packages/vim-mode/docs/overview.md')
| -rw-r--r-- | atom/packages/vim-mode/docs/overview.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/atom/packages/vim-mode/docs/overview.md b/atom/packages/vim-mode/docs/overview.md new file mode 100644 index 0000000..3f91ea9 --- /dev/null +++ b/atom/packages/vim-mode/docs/overview.md @@ -0,0 +1,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,<,> |