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/motions.md | |
| parent | 4efcafab7f0aa454f9ebe767133654bc9f44e12c (diff) | |
Remove Atom config
Diffstat (limited to 'atom/packages/vim-mode/docs/motions.md')
| -rw-r--r-- | atom/packages/vim-mode/docs/motions.md | 59 |
1 files changed, 0 insertions, 59 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`` |