diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-03-14 23:19:58 +0100 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-03-14 23:19:58 +0100 |
| commit | b009b50e81b6c1d0d691505b5f5c0418f559bfc0 (patch) | |
| tree | 5fae800e76219eba28634cb236565f9b4bb7a2f7 /atom/packages/vim-mode/docs | |
| parent | 4efcafab7f0aa454f9ebe767133654bc9f44e12c (diff) | |
Remove Atom config
Diffstat (limited to 'atom/packages/vim-mode/docs')
| -rw-r--r-- | atom/packages/vim-mode/docs/motions.md | 59 | ||||
| -rw-r--r-- | atom/packages/vim-mode/docs/operators.md | 47 | ||||
| -rw-r--r-- | atom/packages/vim-mode/docs/overview.md | 31 | ||||
| -rw-r--r-- | atom/packages/vim-mode/docs/scrolling.md | 16 | ||||
| -rw-r--r-- | atom/packages/vim-mode/docs/windows.md | 12 |
5 files changed, 0 insertions, 165 deletions
diff --git a/atom/packages/vim-mode/docs/motions.md b/atom/packages/vim-mode/docs/motions.md deleted file mode 100644 index ab77fdd..0000000 --- a/atom/packages/vim-mode/docs/motions.md +++ /dev/null @@ -1,59 +0,0 @@ -## Implemented Motions - -* [w](http://vimhelp.appspot.com/motion.txt.html#w) -* [W](http://vimhelp.appspot.com/motion.txt.html#W) -* [e](http://vimhelp.appspot.com/motion.txt.html#e) -* [E](http://vimhelp.appspot.com/motion.txt.html#E) -* [b](http://vimhelp.appspot.com/motion.txt.html#b) -* [B](http://vimhelp.appspot.com/motion.txt.html#B) -* [h](http://vimhelp.appspot.com/motion.txt.html#h) -* [j](http://vimhelp.appspot.com/motion.txt.html#j) -* [k](http://vimhelp.appspot.com/motion.txt.html#k) -* [l](http://vimhelp.appspot.com/motion.txt.html#l) -* [{](http://vimhelp.appspot.com/motion.txt.html#%7B) -* [}](http://vimhelp.appspot.com/motion.txt.html#%7D) -* [^](http://vimhelp.appspot.com/motion.txt.html#%5E) -* [$](http://vimhelp.appspot.com/motion.txt.html#%24) -* [0](http://vimhelp.appspot.com/motion.txt.html#0) -* [-](http://vimhelp.appspot.com/motion.txt.html#-) -* [+](http://vimhelp.appspot.com/motion.txt.html#+) -* [_](http://vimhelp.appspot.com/motion.txt.html#_) -* [<enter>](http://vimhelp.appspot.com/motion.txt.html#<CR>) -* [gg](http://vimhelp.appspot.com/motion.txt.html#gg) -* [G](http://vimhelp.appspot.com/motion.txt.html#G) -* [gt](http://vimhelp.appspot.com/tabpage.txt.html#gt) -* [gT](http://vimhelp.appspot.com/tabpage.txt.html#gT) -* [H](http://vimhelp.appspot.com/motion.txt.html#H) -* [L](http://vimhelp.appspot.com/motion.txt.html#L) -* [M](http://vimhelp.appspot.com/motion.txt.html#M) -* ['[a-z][A-Z]](http://vimhelp.appspot.com/motion.txt.html#%27) -* [`[a-z][A-Z]](http://vimhelp.appspot.com/motion.txt.html#%27) -* [f](http://vimhelp.appspot.com/motion.txt.html#f) -* [F](http://vimhelp.appspot.com/motion.txt.html#F) -* [t](http://vimhelp.appspot.com/motion.txt.html#t) -* [T](http://vimhelp.appspot.com/motion.txt.html#T) -* [;](http://vimhelp.appspot.com/motion.txt.html#%3B) -* [,](http://vimhelp.appspot.com/motion.txt.html#%2C) -* [/ and ?](http://vimhelp.appspot.com/pattern.txt.html#search-commands) (including `//` and `??`) - -## Implemented Text Objects - -[Vim text objects](http://vimhelp.appspot.com/motion.txt.html#object-select) - -* ``a "`` ``i "`` -* ``a '`` ``i '`` -* ``a ``` ``i ``` -* ``a (`` ``i (`` -* ``a )`` ``i )`` -* ``a <`` ``i <`` -* ``a >`` ``i >`` -* ``a [`` ``i [`` -* ``a ]`` ``i ]`` -* ``a {`` ``i {`` -* ``a }`` ``i }`` -* ``a b`` ``i b`` -* ``a B`` ``i B`` -* ``a p`` ``i p`` -* ``a w`` ``i w`` -* ``a W`` ``i W`` -* ``i t`` diff --git a/atom/packages/vim-mode/docs/operators.md b/atom/packages/vim-mode/docs/operators.md deleted file mode 100644 index dbfc45e..0000000 --- a/atom/packages/vim-mode/docs/operators.md +++ /dev/null @@ -1,47 +0,0 @@ -## Implemented Operators - -* [Delete](http://vimhelp.appspot.com/change.txt.html#deleting) - * `vwd` - works in visual mode - * `dw` - with a motion - * `3d2w` - with repeating operator and motion - * `dd` - linewise - * `d2d` - repeated linewise - * `D` - delete to the end of the line - * `X` - delete the character before the cursor -* [Change](http://vimhelp.appspot.com/change.txt.html#c) - * `vwc` - works in visual mode - * `cw` - deletes the next word and switches to insert mode. - * `cc` - linewise - * `c2c` - repeated linewise - * `C` - change to the end of the line -* [Adding and subtracting](http://vimhelp.appspot.com/change.txt.html#CTRL-A) - * `ctrl-a` and `ctrl-x` in normal mode to increase/decrease numbers in text -* [Yank](http://vimhelp.appspot.com/change.txt.html#yank) - * `vwy` - works in visual mode - * `yw` - with a motion - * `yy` - linewise - * `y2y` - repeated linewise - * `"ayy` - supports registers (named a-z, A-Z for append, *, +, %, _) - * `Y` - linewise -* Indent/Outdent/Auto-indent - * `vw>` - works in visual mode - * `>>` - indent current line one level - * `>2>` - repeated linewise - * `v2>` - repeat indent operation in visual mode - * `<<` - outdent current line one level - * `<2<` - repeated linewise - * `v2<` - repeat outdent operation in visual mode - * `==` - auto-indents current line -* [Put](http://vimhelp.appspot.com/change.txt.html#p) - * `p` - default register - * `P` - pastes the default register before the current cursor. - * `"ap` - supports registers - * `ctrl-r a` or `ctrl-r "` etc. - supports pasting register content in insert mode -* [Join](http://vimhelp.appspot.com/change.txt.html#J) - * `J` - joins the current line with the immediately following line. -* [Mark](http://vimhelp.appspot.com/motion.txt.html#m) - * `m[a-z][A-Z]` - marks the current cursor position -* [Case](http://vimhelp.appspot.com/motion.txt.html#operator) - * `~` or `g~` - toggles case - * `gU`, or `U` in visual mode - changes to upper case - * `gu`, or `u` in visual mode - changes to lower case diff --git a/atom/packages/vim-mode/docs/overview.md b/atom/packages/vim-mode/docs/overview.md deleted file mode 100644 index c59176c..0000000 --- a/atom/packages/vim-mode/docs/overview.md +++ /dev/null @@ -1,31 +0,0 @@ -## Overview - -* There are only currently two modes, normal 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`. - * The following commands are supported in insert mode: - * `ctrl-y` to copy the character right above the cursor - * `ctrl-e` to copy the character right below the cursor (**disabled by default**, see note 1 below) -* Replace mode can be entered using `R` - * Limitations: - * If repeating with `.` gets a bit confused (e.g. by multiple cursors or when more than one line was typed), please report it with steps to reproduce if you can. -* 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,<,> - - -#### Notes - -1. To enable the VIM key binding `ctrl-e` to copy the character right below the cursor, please put this in your `keymap.cson`: - -``` -'atom-text-editor.vim-mode.insert-mode': - 'ctrl-e': 'vim-mode:copy-from-line-below' -``` diff --git a/atom/packages/vim-mode/docs/scrolling.md b/atom/packages/vim-mode/docs/scrolling.md deleted file mode 100644 index bfd0506..0000000 --- a/atom/packages/vim-mode/docs/scrolling.md +++ /dev/null @@ -1,16 +0,0 @@ -## Implemented Scrolling Commands - -* [ctrl-e](http://vimhelp.appspot.com/scroll.txt.html#CTRL-E) -* [ctrl-y](http://vimhelp.appspot.com/scroll.txt.html#CTRL-Y) -* [ctrl-f](http://vimhelp.appspot.com/scroll.txt.html#CTRL-F) -* [ctrl-b](http://vimhelp.appspot.com/scroll.txt.html#CTRL-B) -* [ctrl-u](http://vimhelp.appspot.com/scroll.txt.html#CTRL-U) -* [ctrl-d](http://vimhelp.appspot.com/scroll.txt.html#CTRL-D) -* [z enter](http://vimhelp.appspot.com/scroll.txt.html#z%3CCR%3E) -* [zt](http://vimhelp.appspot.com/scroll.txt.html#zt) -* [z.](http://vimhelp.appspot.com/scroll.txt.html#z.) -* [zz](http://vimhelp.appspot.com/scroll.txt.html#zz) -* [z-](http://vimhelp.appspot.com/scroll.txt.html#z-) -* [zb](http://vimhelp.appspot.com/scroll.txt.html#zb) -* [zs](http://vimhelp.appspot.com/scroll.txt.html#zs) -* [ze](http://vimhelp.appspot.com/scroll.txt.html#ze) diff --git a/atom/packages/vim-mode/docs/windows.md b/atom/packages/vim-mode/docs/windows.md deleted file mode 100644 index ebad2d9..0000000 --- a/atom/packages/vim-mode/docs/windows.md +++ /dev/null @@ -1,12 +0,0 @@ -## Implemented Split Pane Commands - -* `ctrl-w h`/`ctrl-w left`/`ctrl-w ctrl-h` - focus pane on left -* `ctrl-w l`/`ctrl-w right`/`ctrl-w ctrl-l` - focus pane on right -* `ctrl-w k`/`ctrl-w up`/`ctrl-w ctrl-k` - focus pane above -* `ctrl-w j`/`ctrl-w down`/`ctrl-w ctrl-j` - focus pane below -* `ctrl-w w`/`ctrl-w ctrl-w` - focus next pane -* `ctrl-w p`/`ctrl-w ctrl-p` - focus previous pane -* `ctrl-w v`/`ctrl-w ctrl-v` - create vertical split -* `ctrl-w s`/`ctrl-w ctrl-s` - create horizontal split -* `ctrl-w c`/`ctrl-w ctrl-c` - close focused pane -* `ctrl-w q`/`ctrl-w ctrl-q` - close focused tab |