Last active
August 29, 2015 14:01
-
-
Save ariunbayar/009f3b721b9991d1035a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://vim.wikia.com/wiki/Mapping_keys_in_Vim_-_Tutorial_(Part_1) | |
| === | |
| In the output of the above commands, the first column indicates the mode in which the map works. You can interpret the first column character using the following table: | |
| n Normal mode map. Defined using ':nmap' or ':nnoremap'. | |
| i Insert mode map. Defined using ':imap' or ':inoremap'. | |
| v Visual and select mode map. Defined using ':vmap' or ':vnoremap'. | |
| x Visual mode map. Defined using ':xmap' or ':xnoremap'. | |
| s Select mode map. Defined using ':smap' or ':snoremap'. | |
| c Command-line mode map. Defined using ':cmap' or ':cnoremap'. | |
| o Operator pending mode map. Defined using ':omap' or ':onoremap'. | |
| <Space> Normal, Visual and operator pending mode map. Defined using | |
| ':map' or ':noremap'. | |
| ! Insert and command-line mode map. Defined using 'map!' or | |
| 'noremap!'. | |
| === | |
| The following characters may be displayed before the {rhs} of the map: | |
| * The {rhs} of the map is not re-mappable. Defined using the | |
| ':noremap' or ':nnoremap' or ':inoremap', etc. commands. | |
| & Only script local mappings are re-mappable in the {rhs} of the | |
| map. The map command has the <script> attribute. | |
| @ A buffer local map command with the <buffer> attribute. | |
| === | |
| nox<C-E> <Plug>NERDTreeTabsToggle<CR> | |
| Last set from ~/.vimrc | |
| s <C-H> * a<BS> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/autoload/neosnippet/mappings.vim | |
| nox<C-H> <C-W>h<C-W>_ | |
| Last set from ~/.vimrc | |
| s <Tab> <Right><Plug>(neosnippet_jump_or_expand) | |
| Last set from ~/.vimrc | |
| nox<NL> <C-W>j<C-W>_ | |
| Last set from ~/.vimrc | |
| s <C-K> <Plug>(neosnippet_expand_or_jump) | |
| Last set from ~/.vimrc | |
| nox<C-K> <C-W>k<C-W>_ | |
| Last set from ~/.vimrc | |
| nox<C-L> <C-W>l<C-W>_ | |
| Last set from ~/.vimrc | |
| s <CR> * a<BS> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/autoload/neosnippet/mappings.vim | |
| x <C-N> * :<C-U>call multiple_cursors#new("v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-multiple-cursors/plugin/multiple_cursors.vim | |
| n <C-N> * :call multiple_cursors#new("n")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-multiple-cursors/plugin/multiple_cursors.vim | |
| n <C-P> * :<C-U>CtrlP<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/ctrlp.vim/plugin/ctrlp.vim | |
| x $ * :<C-U>call WrapRelativeMotion("$", 1)<CR> | |
| Last set from ~/.vimrc | |
| o $ * v:call WrapRelativeMotion("$")<CR> | |
| Last set from ~/.vimrc | |
| n $ * :call WrapRelativeMotion("$")<CR> | |
| Last set from ~/.vimrc | |
| o % * v:<C-U>call <SNR>66_Match_wrapper('',1,'o') <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x % * :<C-U>call <SNR>66_Match_wrapper('',1,'v') <CR>m'gv`` | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| n % * :<C-U>call <SNR>66_Match_wrapper('',1,'n') <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| o ( <Plug>(textobj-sentence-move-p) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x ( <Plug>(textobj-sentence-move-p) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n ( <Plug>(textobj-sentence-move-p) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o ) <Plug>(textobj-sentence-move-n) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x ) <Plug>(textobj-sentence-move-n) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n ) <Plug>(textobj-sentence-move-n) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n ,P :Preview<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-preview/plugin/preview.vim | |
| n ,ca <Plug>NERDCommenterAltDelims | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cu <Plug>NERDCommenterUncomment | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cu <Plug>NERDCommenterUncomment | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cb <Plug>NERDCommenterAlignBoth | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cb <Plug>NERDCommenterAlignBoth | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cl <Plug>NERDCommenterAlignLeft | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cl <Plug>NERDCommenterAlignLeft | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cA <Plug>NERDCommenterAppend | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cy <Plug>NERDCommenterYank | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cy <Plug>NERDCommenterYank | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cs <Plug>NERDCommenterSexy | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cs <Plug>NERDCommenterSexy | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,ci <Plug>NERDCommenterInvert | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,ci <Plug>NERDCommenterInvert | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,c$ <Plug>NERDCommenterToEOL | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cn <Plug>NERDCommenterNested | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cn <Plug>NERDCommenterNested | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cm <Plug>NERDCommenterMinimal | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cm <Plug>NERDCommenterMinimal | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,c<Space> <Plug>NERDCommenterToggle | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,c<Space> <Plug>NERDCommenterToggle | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x ,cc <Plug>NERDCommenterComment | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,cc <Plug>NERDCommenterComment | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n ,gt <Plug>(signify-toggle) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n ,gh <Plug>(signify-toggle-highlight) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n ,gk <Plug>(signify-prev-hunk) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n ,gj <Plug>(signify-next-hunk) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n ,ig <Plug>IndentGuidesToggle | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-indent-guides/plugin/indent_guides.vim | |
| nox,, <Plug>(easymotion-prefix) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| n ,u * :UndotreeToggle<CR> | |
| Last set from ~/.vimrc | |
| n ,gg * :SignifyToggle<CR> | |
| Last set from ~/.vimrc | |
| n ,gi * :Git add -p %<CR> | |
| Last set from ~/.vimrc | |
| n ,ge * :Gedit<CR> | |
| Last set from ~/.vimrc | |
| n ,gw * :Gwrite<CR> | |
| Last set from ~/.vimrc | |
| n ,gr * :Gread<CR> | |
| Last set from ~/.vimrc | |
| n ,gp * :Git push<CR> | |
| Last set from ~/.vimrc | |
| n ,gl * :Glog<CR> | |
| Last set from ~/.vimrc | |
| n ,gb * :Gblame<CR> | |
| Last set from ~/.vimrc | |
| n ,gc * :Gcommit<CR> | |
| Last set from ~/.vimrc | |
| n ,gd * :Gdiff<CR> | |
| Last set from ~/.vimrc | |
| n ,gs * :Gstatus<CR> | |
| Last set from ~/.vimrc | |
| n ,tt * :TagbarToggle<CR> | |
| Last set from ~/.vimrc | |
| n ,jt <Esc>:%!python -m json.tool<CR><Esc>:set filetype=json<CR> | |
| Last set from ~/.vimrc | |
| n ,sc :SessionClose<CR> | |
| Last set from ~/.vimrc | |
| n ,ss :SessionSave<CR> | |
| Last set from ~/.vimrc | |
| n ,sl :SessionList<CR> | |
| Last set from ~/.vimrc | |
| v ,a| :Tabularize /|<CR> | |
| Last set from ~/.vimrc | |
| n ,a| :Tabularize /|<CR> | |
| Last set from ~/.vimrc | |
| x ,a,, :Tabularize /,\zs<CR> | |
| Last set from ~/.vimrc | |
| n ,a,, :Tabularize /,\zs<CR> | |
| Last set from ~/.vimrc | |
| x ,a, :Tabularize /,<CR> | |
| Last set from ~/.vimrc | |
| n ,a, :Tabularize /,<CR> | |
| Last set from ~/.vimrc | |
| x ,a:: :Tabularize /:\zs<CR> | |
| Last set from ~/.vimrc | |
| n ,a:: :Tabularize /:\zs<CR> | |
| Last set from ~/.vimrc | |
| x ,a: :Tabularize /:<CR> | |
| Last set from ~/.vimrc | |
| n ,a: :Tabularize /:<CR> | |
| Last set from ~/.vimrc | |
| x ,a= :Tabularize /=<CR> | |
| Last set from ~/.vimrc | |
| n ,a= :Tabularize /=<CR> | |
| Last set from ~/.vimrc | |
| x ,a& :Tabularize /&<CR> | |
| Last set from ~/.vimrc | |
| n ,a& :Tabularize /&<CR> | |
| Last set from ~/.vimrc | |
| n ,nt :NERDTreeFind<CR> | |
| Last set from ~/.vimrc | |
| nox,e :NERDTreeFind<CR> | |
| Last set from ~/.vimrc | |
| n ,ac <Plug>ToggleAutoCloseMappings | |
| Last set from ~/.vimrc | |
| n ,q * gwip | |
| Last set from ~/.vimrc | |
| n ,ff [I:let nr = input("Which one: ")|exe "normal " . nr ."[\t"<CR> | |
| Last set from ~/.vimrc | |
| nox,= <C-W>= | |
| Last set from ~/.vimrc | |
| nox,et :tabe %% | |
| Last set from ~/.vimrc | |
| nox,ev :vsp %% | |
| Last set from ~/.vimrc | |
| nox,es :sp %% | |
| Last set from ~/.vimrc | |
| nox,ew :e %% | |
| Last set from ~/.vimrc | |
| nox,fc /\v^[<|=>]{7}( .*|$)<CR> | |
| Last set from ~/.vimrc | |
| n ,/ :set invhlsearch<CR> | |
| Last set from ~/.vimrc | |
| n ,f9 :set foldlevel=9<CR> | |
| Last set from ~/.vimrc | |
| n ,f8 :set foldlevel=8<CR> | |
| Last set from ~/.vimrc | |
| n ,f7 :set foldlevel=7<CR> | |
| Last set from ~/.vimrc | |
| n ,f6 :set foldlevel=6<CR> | |
| Last set from ~/.vimrc | |
| n ,f5 :set foldlevel=5<CR> | |
| Last set from ~/.vimrc | |
| n ,f4 :set foldlevel=4<CR> | |
| Last set from ~/.vimrc | |
| n ,f3 :set foldlevel=3<CR> | |
| Last set from ~/.vimrc | |
| n ,f2 :set foldlevel=2<CR> | |
| Last set from ~/.vimrc | |
| n ,f1 :set foldlevel=1<CR> | |
| Last set from ~/.vimrc | |
| n ,f0 :set foldlevel=0<CR> | |
| Last set from ~/.vimrc | |
| x . * :normal .<CR> | |
| Last set from ~/.vimrc | |
| x 0 * :<C-U>call WrapRelativeMotion("0", 1)<CR> | |
| Last set from ~/.vimrc | |
| no 0 * :call WrapRelativeMotion("0")<CR> | |
| Last set from ~/.vimrc | |
| x ; <Plug>SneakNext | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o ; <Plug>SneakNext | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n ; <Plug>SneakNext | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <D-r> * :CtrlPMRU<CR> | |
| Last set from ~/.vimrc | |
| n <D-t> * :CtrlP<CR> | |
| Last set from ~/.vimrc | |
| x < * <gv | |
| Last set from ~/.vimrc | |
| nox> ~/myfile | |
| noxH gT | |
| Last set from ~/.vimrc | |
| noxL gt | |
| Last set from ~/.vimrc | |
| n S <Plug>Sneak_S | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x S <Plug>VSurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n Y * y$ | |
| Last set from ~/.vimrc | |
| x Z <Plug>Sneak_S | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o Z <Plug>Sneak_S | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n [c <Plug>(signify-prev-hunk) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| o [% * v:<C-U>call <SNR>66_MultiMatch("bW", "o") <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x [% <Esc>[%m'gv`` | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| n [% * :<C-U>call <SNR>66_MultiMatch("bW", "n") <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x \ <Plug>SneakPrevious | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o \ <Plug>SneakPrevious | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n \ <Plug>SneakPrevious | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x ]f :call PythonDec("function", 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]f :call PythonDec("function", 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]F :call PythonDec("function", -1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]F :call PythonDec("function", -1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]j :call PythonDec("class", 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]j :call PythonDec("class", 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]J :call PythonDec("class", -1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]J :call PythonDec("class", -1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| nox]<Down> :call PythonNextLine(1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| nox]<Up> :call PythonNextLine(-1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| nox]d :call PythonSelectObject("function")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]u :call PythonUncommentSelection()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]u :call PythonUncommentSelection()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]# :call PythonCommentSelection()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]# :call PythonCommentSelection()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]> > | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]> ]tV]e> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]< < | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]< ]tV]e< | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| nox]v ]tV]e | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]e :<C-U>PEoB<CR>m'gv`` | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]e :PEoB<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| x ]t :<C-U>PBOB<CR>m'gv`` | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| no ]t :PBoB<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| nox]c :call PythonSelectObject("class")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/python.vim/plugin/python_fn.vim | |
| o ]% * v:<C-U>call <SNR>66_MultiMatch("W", "o") <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x ]% <Esc>]%m'gv`` | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| n ]% * :<C-U>call <SNR>66_MultiMatch("W", "n") <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x ^ * :<C-U>call WrapRelativeMotion("^", 1)<CR> | |
| Last set from ~/.vimrc | |
| no ^ * :call WrapRelativeMotion("^")<CR> | |
| Last set from ~/.vimrc | |
| o aq <Plug>(textobj-quote-select-d-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x aq <Plug>(textobj-quote-select-d-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o aQ <Plug>(textobj-quote-select-s-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x aQ <Plug>(textobj-quote-select-s-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o as <Plug>(textobj-sentence-select-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x as <Plug>(textobj-sentence-select-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o ai <Plug>(textobj-indent-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x ai <Plug>(textobj-indent-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o aI <Plug>(textobj-indent-same-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x aI <Plug>(textobj-indent-same-a) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x a% <Esc>[%v]% | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| n cr <Plug>Coerce | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-abolish/plugin/abolish.vim | |
| n cs <Plug>Csurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n ds <Plug>Dsurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| o g) <Plug>(textobj-sentence-move-N) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x g) <Plug>(textobj-sentence-move-N) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n g) <Plug>(textobj-sentence-move-N) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o g( <Plug>(textobj-sentence-move-P) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x g( <Plug>(textobj-sentence-move-P) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n g( <Plug>(textobj-sentence-move-P) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o g% * v:<C-U>call <SNR>66_Match_wrapper('',0,'o') <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x g% * :<C-U>call <SNR>66_Match_wrapper('',0,'v') <CR>m'gv`` | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| n g% * :<C-U>call <SNR>66_Match_wrapper('',0,'n') <CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/matchit.zip/plugin/matchit.vim | |
| x gS <Plug>VgSurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n gx <Plug>NetrwBrowseX | |
| Last set from /usr/share/vim/vim73/plugin/netrwPlugin.vim | |
| o iq <Plug>(textobj-quote-select-d-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x iq <Plug>(textobj-quote-select-d-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o iQ <Plug>(textobj-quote-select-s-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x iQ <Plug>(textobj-quote-select-s-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o is <Plug>(textobj-sentence-select-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x is <Plug>(textobj-sentence-select-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o ii <Plug>(textobj-indent-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x ii <Plug>(textobj-indent-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o iI <Plug>(textobj-indent-same-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x iI <Plug>(textobj-indent-same-i) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| noxj * gj | |
| Last set from ~/.vimrc | |
| noxk * gk | |
| Last set from ~/.vimrc | |
| x s <Plug>Sneak_s | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n s <Plug>Sneak_s | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n ySS <Plug>YSsurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n ySs <Plug>YSsurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n yss <Plug>Yssurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n yS <Plug>YSurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n ys <Plug>Ysurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| o z <Plug>Sneak_s | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| noxzh zH | |
| Last set from ~/.vimrc | |
| noxzl zL | |
| Last set from ~/.vimrc | |
| o <Plug>(textobj-quote-select-d-i) * :<C-U>call g:__textobj_quote.do_by_function("select-i","select-d","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-quote-select-d-i) * :<C-U>call g:__textobj_quote.do_by_function("select-i","select-d","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-quote-select-d-a) * :<C-U>call g:__textobj_quote.do_by_function("select-a","select-d","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-quote-select-d-a) * :<C-U>call g:__textobj_quote.do_by_function("select-a","select-d","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-quote-select-s-i) * :<C-U>call g:__textobj_quote.do_by_function("select-i","select-s","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-quote-select-s-i) * :<C-U>call g:__textobj_quote.do_by_function("select-i","select-s","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-quote-select-s-a) * :<C-U>call g:__textobj_quote.do_by_function("select-a","select-s","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-quote-select-s-a) * :<C-U>call g:__textobj_quote.do_by_function("select-a","select-s","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-sentence-move-N) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-N","move","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-sentence-move-N) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-N","move","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n <Plug>(textobj-sentence-move-N) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-N","move","n")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-sentence-move-p) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-p","move","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-sentence-move-p) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-p","move","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n <Plug>(textobj-sentence-move-p) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-p","move","n")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-sentence-move-n) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-n","move","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-sentence-move-n) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-n","move","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n <Plug>(textobj-sentence-move-n) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-n","move","n")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-sentence-move-P) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-P","move","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-sentence-move-P) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-P","move","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n <Plug>(textobj-sentence-move-P) * :<C-U>call g:__textobj_sentence.do_by_pattern("move-P","move","n")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-sentence-select-i) * :<C-U>call g:__textobj_sentence.do_by_function("select-i","select","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-sentence-select-i) * :<C-U>call g:__textobj_sentence.do_by_function("select-i","select","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-sentence-select-a) * :<C-U>call g:__textobj_sentence.do_by_function("select-a","select","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-sentence-select-a) * :<C-U>call g:__textobj_sentence.do_by_function("select-a","select","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| s <Del> * a<BS> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/autoload/neosnippet/mappings.vim | |
| s <BS> * a<BS> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/autoload/neosnippet/mappings.vim | |
| x <Plug>(neosnippet_register_oneshot_snippet) * :<C-U>call neosnippet#mappings#_register_oneshot_snippet()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| x <Plug>(neosnippet_start_unite_snippet_target) * unite#sources#neosnippet_target#start() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| x <Plug>(neosnippet_expand_target) * :<C-U>call neosnippet#mappings#_expand_target()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| x <Plug>(neosnippet_get_selected_text) * :call neosnippet#helpers#get_selected_text(visualmode(), 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| s <Plug>(neosnippet_jump) * neosnippet#mappings#jump_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| s <Plug>(neosnippet_expand) * neosnippet#mappings#expand_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| s <Plug>(neosnippet_jump_or_expand) * neosnippet#mappings#jump_or_expand_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| s <Plug>(neosnippet_expand_or_jump) * neosnippet#mappings#expand_or_jump_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| s <Plug>(neocomplcache_snippets_force_jump) * :<C-U>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| s <Plug>(neocomplcache_snippets_force_expand) * :<C-U>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| s <Plug>(neocomplcache_snippets_jump) * :<C-U>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| s <Plug>(neocomplcache_snippets_expand) * :<C-U>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| n <Plug>NERDCommenterAltDelims * :call <SNR>102_SwitchToAlternativeDelimiters(1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterUncomment * :call NERDComment("x", "Uncomment")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterUncomment * :call NERDComment("n", "Uncomment")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterAlignBoth * :call NERDComment("x", "AlignBoth")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterAlignBoth * :call NERDComment("n", "AlignBoth")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterAlignLeft * :call NERDComment("x", "AlignLeft")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterAlignLeft * :call NERDComment("n", "AlignLeft")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterAppend * :call NERDComment("n", "Append")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterYank * :call NERDComment("x", "Yank")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterYank * :call NERDComment("n", "Yank")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterSexy * :call NERDComment("x", "Sexy")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterSexy * :call NERDComment("n", "Sexy")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterInvert * :call NERDComment("x", "Invert")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterInvert * :call NERDComment("n", "Invert")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterToEOL * :call NERDComment("n", "ToEOL")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterNested * :call NERDComment("x", "Nested")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterNested * :call NERDComment("n", "Nested")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterMinimal * :call NERDComment("x", "Minimal")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterMinimal * :call NERDComment("n", "Minimal")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterToggle * :call NERDComment("x", "Toggle")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterToggle * :call NERDComment("n", "Toggle")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>NERDCommenterComment * :call NERDComment("x", "Comment")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| n <Plug>NERDCommenterComment * :call NERDComment("n", "Comment")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| x <Plug>SurroundWithSingle * :<C-U>call textobj#quote#surround#surround(0, visualmode())<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| n <Plug>SurroundWithSingle * :call textobj#quote#surround#surround(0, '')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| x <Plug>SurroundWithDouble * :<C-U>call textobj#quote#surround#surround(1, visualmode())<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| n <Plug>SurroundWithDouble * :call textobj#quote#surround#surround(1, '')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| x <Plug>ReplaceWithStraight * :<C-U>call textobj#quote#replace#replace(0, visualmode())<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| n <Plug>ReplaceWithStraight * :call textobj#quote#replace#replace(0, '')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| x <Plug>ReplaceWithCurly * :<C-U>call textobj#quote#replace#replace(1, visualmode())<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| n <Plug>ReplaceWithCurly * :call textobj#quote#replace#replace(1, '')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-quote/plugin/textobj/quote.vim | |
| o <Plug>(textobj-indent-i) * :<C-U>call g:__textobj_indent.do_by_function("select-i","-","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-indent-i) * :<C-U>call g:__textobj_indent.do_by_function("select-i","-","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-indent-a) * :<C-U>call g:__textobj_indent.do_by_function("select-a","-","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-indent-a) * :<C-U>call g:__textobj_indent.do_by_function("select-a","-","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-indent-same-i) * :<C-U>call g:__textobj_indent.do_by_function("select-i","same","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-indent-same-i) * :<C-U>call g:__textobj_indent.do_by_function("select-i","same","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| o <Plug>(textobj-indent-same-a) * :<C-U>call g:__textobj_indent.do_by_function("select-a","same","o")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>(textobj-indent-same-a) * :<C-U>call g:__textobj_indent.do_by_function("select-a","same","v")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| n <SNR>82_ * <SNR>82_ | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-textobj-user/autoload/textobj/user.vim | |
| x <Plug>VSneakPrevious <Plug>SneakPrevious | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>VSneakNext <Plug>SneakNext | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>VSneakBackward <Plug>Sneak_S | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>VSneakForward <Plug>Sneak_s | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>SneakBackward <Plug>Sneak_S | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>SneakForward <Plug>Sneak_s | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>(SneakStreakBackward) * :<C-U>call sneak#wrap(v:operator, 2, 1, 2, 2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>(SneakStreak) * :<C-U>call sneak#wrap(v:operator, 2, 0, 2, 2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>(SneakStreakBackward) * :<C-U>call sneak#wrap(visualmode(), 2, 1, 2, 2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>(SneakStreak) * :<C-U>call sneak#wrap(visualmode(), 2, 0, 2, 2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>(SneakStreakBackward) * :<C-U>call sneak#wrap('', 2, 1, 2, 2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>(SneakStreak) * :<C-U>call sneak#wrap('', 2, 0, 2, 2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>Sneak_T * :<C-U>call sneak#wrap(v:operator, 1, 1, 0, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>Sneak_t * :<C-U>call sneak#wrap(v:operator, 1, 0, 0, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>Sneak_T * :<C-U>call sneak#wrap(visualmode(), 1, 1, 0, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>Sneak_t * :<C-U>call sneak#wrap(visualmode(), 1, 0, 0, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Sneak_T * :<C-U>call sneak#wrap('', 1, 1, 0, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Sneak_t * :<C-U>call sneak#wrap('', 1, 0, 0, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>Sneak_F * :<C-U>call sneak#wrap(v:operator, 1, 1, 1, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>Sneak_f * :<C-U>call sneak#wrap(v:operator, 1, 0, 1, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>Sneak_F * :<C-U>call sneak#wrap(visualmode(), 1, 1, 1, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>Sneak_f * :<C-U>call sneak#wrap(visualmode(), 1, 0, 1, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Sneak_F * :<C-U>call sneak#wrap('', 1, 1, 1, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Sneak_f * :<C-U>call sneak#wrap('', 1, 0, 1, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>SneakPrevious * :<C-U>call sneak#rpt(v:operator, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>SneakNext * :<C-U>call sneak#rpt(v:operator, 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>SneakPrevious * :<C-U>call sneak#rpt(visualmode(), 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>SneakNext * :<C-U>call sneak#rpt(visualmode(), 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>SneakPrevious * :<C-U>call sneak#rpt('', 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>SneakNext * :<C-U>call sneak#rpt('', 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>SneakRepeat * :<C-U>call sneak#wrap(v:operator, sneak#util#getc(), sneak#util#getc(), sneak#util#getc(), sneak#util#getc())<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>Sneak_S * :<C-U>call sneak#wrap(v:operator, 2, 1, 2, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| o <Plug>Sneak_s * :<C-U>call sneak#wrap(v:operator, 2, 0, 2, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>Sneak_S * :<C-U>call sneak#wrap(visualmode(), 2, 1, 2, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| x <Plug>Sneak_s * :<C-U>call sneak#wrap(visualmode(), 2, 0, 2, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Sneak_S * :<C-U>call sneak#wrap('', 2, 1, 2, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Sneak_s * :<C-U>call sneak#wrap('', 2, 0, 2, 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-sneak/plugin/sneak.vim | |
| n <Plug>Coerce * :<C-U>call <SNR>78_coerce(nr2char(getchar()))<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-abolish/plugin/abolish.vim | |
| n <Plug>(signify-toggle) * :<C-U>call sy#toggle()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n <Plug>(signify-toggle-highlight) * :<C-U>call sy#highlight#line_toggle()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n <Plug>(signify-prev-hunk) * &diff ? '[c' : ":\<C-U>call sy#jump#prev_hunk(v:count1)\<CR>" | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n <Plug>(signify-next-hunk) * &diff ? ']c' : ":\<C-U>call sy#jump#next_hunk(v:count1)\<CR>" | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-signify/plugin/signify.vim | |
| n <Plug>IndentGuidesDisable & :IndentGuidesDisable<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-indent-guides/plugin/indent_guides.vim | |
| n <Plug>IndentGuidesEnable & :IndentGuidesEnable<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-indent-guides/plugin/indent_guides.vim | |
| n <Plug>IndentGuidesToggle & :IndentGuidesToggle<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-indent-guides/plugin/indent_guides.vim | |
| nox<Plug>(easymotion-prefix)N <Plug>(easymotion-N) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)n <Plug>(easymotion-n) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)k <Plug>(easymotion-k) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)j <Plug>(easymotion-j) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)gE <Plug>(easymotion-gE) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)ge <Plug>(easymotion-ge) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)E <Plug>(easymotion-E) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)e <Plug>(easymotion-e) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)B <Plug>(easymotion-B) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)b <Plug>(easymotion-b) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)W <Plug>(easymotion-W) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)w <Plug>(easymotion-w) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)T <Plug>(easymotion-T) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)t <Plug>(easymotion-t) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)s <Plug>(easymotion-s) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)F <Plug>(easymotion-F) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| nox<Plug>(easymotion-prefix)f <Plug>(easymotion-f) | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-activate) * :<C-U>call EasyMotion#activate(1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-activate) * :<C-U>call EasyMotion#activate(0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-lineanywhere) * <Esc>:<C-U>call EasyMotion#LineAnywhere(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-lineanywhere) * :<C-U>call EasyMotion#LineAnywhere(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-linebackward) * <Esc>:<C-U>call EasyMotion#LineAnywhere(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-linebackward) * :<C-U>call EasyMotion#LineAnywhere(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-lineforward) * <Esc>:<C-U>call EasyMotion#LineAnywhere(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-lineforward) * :<C-U>call EasyMotion#LineAnywhere(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-el) * <Esc>:<C-U>call EasyMotion#EL(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-el) * :<C-U>call EasyMotion#EL(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-gel) * <Esc>:<C-U>call EasyMotion#EL(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-gel) * :<C-U>call EasyMotion#EL(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-el) * <Esc>:<C-U>call EasyMotion#EL(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-el) * :<C-U>call EasyMotion#EL(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-wl) * <Esc>:<C-U>call EasyMotion#WBL(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-wl) * :<C-U>call EasyMotion#WBL(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bl) * <Esc>:<C-U>call EasyMotion#WBL(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bl) * :<C-U>call EasyMotion#WBL(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-wl) * <Esc>:<C-U>call EasyMotion#WBL(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-wl) * :<C-U>call EasyMotion#WBL(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-prev) * <Esc>:<C-U>call EasyMotion#NextPrevious(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-prev) * :<C-U>call EasyMotion#NextPrevious(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-next) * <Esc>:<C-U>call EasyMotion#NextPrevious(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-next) * :<C-U>call EasyMotion#NextPrevious(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-dotrepeat) * <Esc>:<C-U>call EasyMotion#DotRepeat(1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-dotrepeat) * :<C-U>call EasyMotion#DotRepeat(0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-repeat) * <Esc>:<C-U>call EasyMotion#Repeat(1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-repeat) * :<C-U>call EasyMotion#Repeat(0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-jumptoanywhere) * <Esc>:<C-U>call EasyMotion#JumpToAnywhere(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-jumptoanywhere) * :<C-U>call EasyMotion#JumpToAnywhere(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-n) * <Esc>:<C-U>call EasyMotion#Search(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-n) * :<C-U>call EasyMotion#Search(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-N) * <Esc>:<C-U>call EasyMotion#Search(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-N) * :<C-U>call EasyMotion#Search(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-n) * <Esc>:<C-U>call EasyMotion#Search(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-n) * :<C-U>call EasyMotion#Search(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-eol-bd-jk) * <Esc>:<C-U>call EasyMotion#Eol(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-eol-bd-jk) * :<C-U>call EasyMotion#Eol(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-eol-k) * <Esc>:<C-U>call EasyMotion#Eol(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-eol-k) * :<C-U>call EasyMotion#Eol(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-eol-j) * <Esc>:<C-U>call EasyMotion#Eol(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-eol-j) * :<C-U>call EasyMotion#Eol(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sol-bd-jk) * <Esc>:<C-U>call EasyMotion#Sol(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sol-bd-jk) * :<C-U>call EasyMotion#Sol(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sol-k) * <Esc>:<C-U>call EasyMotion#Sol(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sol-k) * :<C-U>call EasyMotion#Sol(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sol-j) * <Esc>:<C-U>call EasyMotion#Sol(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sol-j) * :<C-U>call EasyMotion#Sol(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-jk) * <Esc>:<C-U>call EasyMotion#JK(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-jk) * :<C-U>call EasyMotion#JK(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-k) * <Esc>:<C-U>call EasyMotion#JK(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-k) * :<C-U>call EasyMotion#JK(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-j) * <Esc>:<C-U>call EasyMotion#JK(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-j) * :<C-U>call EasyMotion#JK(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-iskeyword-bd-e) * <Esc>:<C-U>call EasyMotion#EK(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-iskeyword-bd-e) * :<C-U>call EasyMotion#EK(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-iskeyword-ge) * <Esc>:<C-U>call EasyMotion#EK(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-iskeyword-ge) * :<C-U>call EasyMotion#EK(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-iskeyword-e) * <Esc>:<C-U>call EasyMotion#EK(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-iskeyword-e) * :<C-U>call EasyMotion#EK(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-E) * <Esc>:<C-U>call EasyMotion#EW(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-E) * :<C-U>call EasyMotion#EW(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-gE) * <Esc>:<C-U>call EasyMotion#EW(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-gE) * :<C-U>call EasyMotion#EW(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-E) * <Esc>:<C-U>call EasyMotion#EW(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-E) * :<C-U>call EasyMotion#EW(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-e) * <Esc>:<C-U>call EasyMotion#E(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-e) * :<C-U>call EasyMotion#E(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-ge) * <Esc>:<C-U>call EasyMotion#E(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-ge) * :<C-U>call EasyMotion#E(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-e) * <Esc>:<C-U>call EasyMotion#E(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-e) * :<C-U>call EasyMotion#E(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-iskeyword-bd-w) * <Esc>:<C-U>call EasyMotion#WBK(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-iskeyword-bd-w) * :<C-U>call EasyMotion#WBK(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-iskeyword-b) * <Esc>:<C-U>call EasyMotion#WBK(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-iskeyword-b) * :<C-U>call EasyMotion#WBK(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-iskeyword-w) * <Esc>:<C-U>call EasyMotion#WBK(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-iskeyword-w) * :<C-U>call EasyMotion#WBK(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-W) * <Esc>:<C-U>call EasyMotion#WBW(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-W) * :<C-U>call EasyMotion#WBW(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-B) * <Esc>:<C-U>call EasyMotion#WBW(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-B) * :<C-U>call EasyMotion#WBW(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-W) * <Esc>:<C-U>call EasyMotion#WBW(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-W) * :<C-U>call EasyMotion#WBW(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-w) * <Esc>:<C-U>call EasyMotion#WB(1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-w) * :<C-U>call EasyMotion#WB(0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-b) * <Esc>:<C-U>call EasyMotion#WB(1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-b) * :<C-U>call EasyMotion#WB(0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-w) * <Esc>:<C-U>call EasyMotion#WB(1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-w) * :<C-U>call EasyMotion#WB(0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Tln) * <Esc>:<C-U>call EasyMotion#TL(-1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Tln) * :<C-U>call EasyMotion#TL(-1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-t2) * <Esc>:<C-U>call EasyMotion#T(2,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-t2) * :<C-U>call EasyMotion#T(2,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-t) * <Esc>:<C-U>call EasyMotion#T(1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-t) * :<C-U>call EasyMotion#T(1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-s) * <Esc>:<C-U>call EasyMotion#S(1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-s) * :<C-U>call EasyMotion#S(1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-tn) * <Esc>:<C-U>call EasyMotion#T(-1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-tn) * :<C-U>call EasyMotion#T(-1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-t2) * <Esc>:<C-U>call EasyMotion#T(2,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-t2) * :<C-U>call EasyMotion#T(2,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-tl) * <Esc>:<C-U>call EasyMotion#TL(1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-tl) * :<C-U>call EasyMotion#TL(1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-tn) * <Esc>:<C-U>call EasyMotion#T(-1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-tn) * :<C-U>call EasyMotion#T(-1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-fn) * <Esc>:<C-U>call EasyMotion#S(-1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-fn) * :<C-U>call EasyMotion#S(-1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-tl) * <Esc>:<C-U>call EasyMotion#TL(1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-tl) * :<C-U>call EasyMotion#TL(1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-fl) * <Esc>:<C-U>call EasyMotion#SL(1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-fl) * :<C-U>call EasyMotion#SL(1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-tl2) * <Esc>:<C-U>call EasyMotion#TL(2,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-tl2) * :<C-U>call EasyMotion#TL(2,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-fn) * <Esc>:<C-U>call EasyMotion#S(-1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-fn) * :<C-U>call EasyMotion#S(-1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-f) * <Esc>:<C-U>call EasyMotion#S(1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-f) * :<C-U>call EasyMotion#S(1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-fl) * <Esc>:<C-U>call EasyMotion#SL(1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-fl) * :<C-U>call EasyMotion#SL(1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Fl2) * <Esc>:<C-U>call EasyMotion#SL(2,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Fl2) * :<C-U>call EasyMotion#SL(2,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-tl2) * <Esc>:<C-U>call EasyMotion#TL(2,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-tl2) * :<C-U>call EasyMotion#TL(2,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-f2) * <Esc>:<C-U>call EasyMotion#S(2,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-f2) * :<C-U>call EasyMotion#S(2,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Fln) * <Esc>:<C-U>call EasyMotion#SL(-1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Fln) * :<C-U>call EasyMotion#SL(-1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sln) * <Esc>:<C-U>call EasyMotion#SL(-1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sln) * :<C-U>call EasyMotion#SL(-1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-tln) * <Esc>:<C-U>call EasyMotion#TL(-1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-tln) * :<C-U>call EasyMotion#TL(-1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-fl2) * <Esc>:<C-U>call EasyMotion#SL(2,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-fl2) * :<C-U>call EasyMotion#SL(2,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-fl2) * <Esc>:<C-U>call EasyMotion#SL(2,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-fl2) * :<C-U>call EasyMotion#SL(2,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-T2) * <Esc>:<C-U>call EasyMotion#T(2,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-T2) * :<C-U>call EasyMotion#T(2,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-tln) * <Esc>:<C-U>call EasyMotion#TL(-1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-tln) * :<C-U>call EasyMotion#TL(-1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-T) * <Esc>:<C-U>call EasyMotion#T(1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-T) * :<C-U>call EasyMotion#T(1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-t) * <Esc>:<C-U>call EasyMotion#T(1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-t) * :<C-U>call EasyMotion#T(1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Tn) * <Esc>:<C-U>call EasyMotion#T(-1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Tn) * :<C-U>call EasyMotion#T(-1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-s2) * <Esc>:<C-U>call EasyMotion#S(2,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-s2) * :<C-U>call EasyMotion#S(2,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Tl) * <Esc>:<C-U>call EasyMotion#TL(1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Tl) * :<C-U>call EasyMotion#TL(1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sn) * <Esc>:<C-U>call EasyMotion#S(-1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sn) * :<C-U>call EasyMotion#S(-1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Fn) * <Esc>:<C-U>call EasyMotion#S(-1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Fn) * :<C-U>call EasyMotion#S(-1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sl) * <Esc>:<C-U>call EasyMotion#SL(1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sl) * :<C-U>call EasyMotion#SL(1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Fl) * <Esc>:<C-U>call EasyMotion#SL(1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Fl) * :<C-U>call EasyMotion#SL(1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-sl2) * <Esc>:<C-U>call EasyMotion#SL(2,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-sl2) * :<C-U>call EasyMotion#SL(2,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-fln) * <Esc>:<C-U>call EasyMotion#SL(-1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-fln) * :<C-U>call EasyMotion#SL(-1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-F) * <Esc>:<C-U>call EasyMotion#S(1,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-F) * :<C-U>call EasyMotion#S(1,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-f) * <Esc>:<C-U>call EasyMotion#S(1,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-f) * :<C-U>call EasyMotion#S(1,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-F2) * <Esc>:<C-U>call EasyMotion#S(2,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-F2) * :<C-U>call EasyMotion#S(2,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-bd-f2) * <Esc>:<C-U>call EasyMotion#S(2,1,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-bd-f2) * :<C-U>call EasyMotion#S(2,0,2)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-Tl2) * <Esc>:<C-U>call EasyMotion#TL(2,1,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-Tl2) * :<C-U>call EasyMotion#TL(2,0,1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| x <Plug>(easymotion-fln) * <Esc>:<C-U>call EasyMotion#SL(-1,1,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| no <Plug>(easymotion-fln) * :<C-U>call EasyMotion#SL(-1,0,0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-easymotion/plugin/EasyMotion.vim | |
| n <Plug>ToggleAutoCloseMappings :call <SNR>61_ToggleAutoCloseMappings()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| x <Plug>VgSurround * :<C-U>call <SNR>60_opfunc(visualmode(),visualmode() ==# 'V' ? 0 : 1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| x <Plug>VSurround * :<C-U>call <SNR>60_opfunc(visualmode(),visualmode() ==# 'V' ? 1 : 0)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>YSurround * :<C-U>set opfunc=<SNR>60_opfunc2<CR>g@ | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>Ysurround * :<C-U>set opfunc=<SNR>60_opfunc<CR>g@ | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>YSsurround * :<C-U>call <SNR>60_opfunc2(v:count1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>Yssurround * :<C-U>call <SNR>60_opfunc(v:count1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>Csurround * :<C-U>call <SNR>60_changesurround()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>Dsurround * :<C-U>call <SNR>60_dosurround(<SNR>60_inputtarget())<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| n <Plug>SurroundRepeat * . | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| nox<Plug>NERDTreeSteppedClose & :call <SNR>59_NERDTreeSteppedClose() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| nox<Plug>NERDTreeSteppedOpen & :call <SNR>59_NERDTreeSteppedOpen() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| nox<Plug>NERDTreeMirrorToggle & :call <SNR>59_NERDTreeMirrorToggle() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| nox<Plug>NERDTreeMirrorOpen & :call <SNR>59_NERDTreeMirrorOrCreate() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| nox<Plug>NERDTreeTabsToggle & :call <SNR>59_NERDTreeToggleAllTabs() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| nox<Plug>NERDTreeTabsClose & :call <SNR>59_NERDTreeCloseAllTabs() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| nox<Plug>NERDTreeTabsOpen & :call <SNR>59_NERDTreeOpenAllTabs() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-nerdtree-tabs/nerdtree_plugin/vim-nerdtree-tabs.vim | |
| n <Plug>NetrwBrowseX * :call netrw#NetrwBrowseX(expand("<cWORD>"),0)<CR> | |
| Last set from /usr/share/vim/vim73/plugin/netrwPlugin.vim | |
| nox<F11> :call system("wmctrl -ir " . v:windowid . " -b toggle,fullscreen")<CR> | |
| Last set from ~/.vimrc | |
| x <Home> * :<C-U>call WrapRelativeMotion("0", 1)<CR> | |
| Last set from ~/.vimrc | |
| x <End> * :<C-U>call WrapRelativeMotion("$", 1)<CR> | |
| Last set from ~/.vimrc | |
| o <End> * v:call WrapRelativeMotion("$")<CR> | |
| Last set from ~/.vimrc | |
| no <Home> * :call WrapRelativeMotion("0")<CR> | |
| Last set from ~/.vimrc | |
| n <End> * :call WrapRelativeMotion("$")<CR> | |
| Last set from ~/.vimrc | |
| nox<S-Insert> <MiddleMouse> | |
| Last set from /usr/share/vim/vim73/debian.vim | |
| i <Plug>(neocomplcache_start_omni_complete) * <C-X><C-O><C-P> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/autoload/neocomplcache/mappings.vim | |
| i <Plug>(neocomplcache_start_auto_complete_no_select) * <C-X><C-U><C-P> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/autoload/neocomplcache/mappings.vim | |
| i <Plug>(neocomplcache_start_auto_complete) * <C-X><C-U><C-R>=neocomplcache#mappings#popup_post()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/autoload/neocomplcache/mappings.vim | |
| i <Plug>(neocomplcache_start_unite_quick_match) * unite#sources#neocomplcache#start_quick_match() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/autoload/neocomplcache/mappings.vim | |
| i <Plug>(neocomplcache_start_unite_complete) * unite#sources#neocomplcache#start_complete() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/autoload/neocomplcache/mappings.vim | |
| i <Plug>(neosnippet_start_unite_snippet) * unite#sources#neosnippet#start_complete() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| i <Plug>(neosnippet_jump) * neosnippet#mappings#jump_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| i <Plug>(neosnippet_expand) * neosnippet#mappings#expand_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| i <Plug>(neosnippet_jump_or_expand) * neosnippet#mappings#jump_or_expand_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| i <Plug>(neosnippet_expand_or_jump) * neosnippet#mappings#expand_or_jump_impl() | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neosnippet/plugin/neosnippet.vim | |
| i <Plug>(neocomplcache_snippets_force_jump) * <C-O>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| i <Plug>(neocomplcache_snippets_force_expand) * <C-O>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| i <Plug>(neocomplcache_snippets_jump) * <C-O>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| i <Plug>(neocomplcache_snippets_expand) * <C-O>:echoerr <SNR>110_print_snippets_complete_error()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/neocomplcache/plugin/neocomplcache.vim | |
| i <Plug>NERDCommenterInsert * <Space><BS><Esc>:call NERDComment('i', "insert")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/nerdcommenter/plugin/NERD_commenter.vim | |
| i <Del> * <C-R>=<SNR>61_OpenCloseBackspaceOrDel("Del")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i <Plug>ISurround * <C-R>=<SNR>60_insert(1)<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| i <Plug>Isurround * <C-R>=<SNR>60_insert()<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| i <S-Tab> * pumvisible() ? "\<C-P>" : "\<Tab>" | |
| Last set from ~/.vimrc | |
| i <BS> * <C-R>=<SNR>61_OpenCloseBackspaceOrDel("BS")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i <S-CR> * pumvisible() ? neocomplcache#close_popup()"\<CR>" : "\<CR>" | |
| Last set from ~/.vimrc | |
| i <Up> * pumvisible() ? "\<C-P>" : "\<Up>" | |
| Last set from ~/.vimrc | |
| i <Down> * pumvisible() ? "\<C-N>" : "\<Down>" | |
| Last set from ~/.vimrc | |
| ! <S-Insert> <MiddleMouse> | |
| Last set from /usr/share/vim/vim73/debian.vim | |
| i <C-D> * pumvisible() ? "\<PageDown>\<C-P>\<C-N>" : "\<C-D>" | |
| Last set from ~/.vimrc | |
| i <C-G>S <Plug>ISurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| i <C-G>s <Plug>Isurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| i <C-G> * neocomplcache#undo_completion() | |
| Last set from ~/.vimrc | |
| i <C-H> * <C-R>=<SNR>61_OpenCloseBackspaceOrDel("BS")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i <Tab> * pumvisible() ? "\<C-N>" : "\<Tab>" | |
| Last set from ~/.vimrc | |
| i <C-K> neosnippet#expandable() ? "\<Plug>(neosnippet_expand_or_jump)" : (pumvisible() ? "\<C-E>" : "\<Plug>(neosnippet_expand_or_jump)") | |
| Last set from ~/.vimrc | |
| i <C-L> * neocomplcache#complete_common_string() | |
| Last set from ~/.vimrc | |
| i <CR> CleverCr() | |
| Last set from ~/.vimrc | |
| i <C-S> <Plug>Isurround | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-surround/plugin/surround.vim | |
| i <C-U> * pumvisible() ? "\<PageUp>\<C-P>\<C-N>" : "\<C-U>" | |
| Last set from ~/.vimrc | |
| i <C-Y> * neocomplcache#close_popup() | |
| Last set from ~/.vimrc | |
| i <Esc>OC * <Right> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i <Esc> * <C-R>=<SNR>61_CloseStackPop('', '')<CR><Esc> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i " * <C-R>=<SNR>61_QuoteDelim('"')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| c %% * <C-R>=expand('%:h').'/'<CR> | |
| Last set from ~/.vimrc | |
| i ' * <C-R>=match(getline('.')[col('.') - 2],'\w') == 0 && getline('.')[col('.')-1] != "'" ? "'" : <SNR>61_QuoteDelim("'")<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i ( * (<C-R>=<SNR>61_CloseStackPush(')')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i ) * <C-R>=<SNR>61_CloseStackPop(')', '(')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| c Tabe tabe | |
| Last set from ~/.vimrc | |
| i [ * [<C-R>=<SNR>61_CloseStackPush(']')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i ] * <C-R>=<SNR>61_CloseStackPop(']', '[')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i ` * <C-R>=<SNR>61_QuoteDelim('`')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| c cd. lcd %:p:h | |
| Last set from ~/.vimrc | |
| c cwd lcd %:p:h | |
| Last set from ~/.vimrc | |
| c w!! w !sudo tee % >/dev/null | |
| Last set from ~/.vimrc | |
| i {<CR> * {<CR>}<C-O>O | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i { * {<C-R>=<SNR>61_CloseStackPush('}')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim | |
| i | * |<Esc>:call <SNR>121_align()<CR>a | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-cucumber-align-pipes/plugin/cucumber-align-pipes.vim | |
| i } * <C-R>=<SNR>61_CloseStackPop('}', '{')<CR> | |
| Last set from ~/.spf13-vim-3/.vim/bundle/vim-autoclose/plugin/autoclose.vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment