diff options
author | ChristianChiarulli <[email protected]> | 2019-02-26 20:31:15 -0500 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2019-02-26 20:31:15 -0500 |
commit | 1b5b78fdac6c8182f583d4875c621c6e6566182b (patch) | |
tree | 6224155cf9e129d47f0753a104594d8c46bb8de9 /modules/vim-which-key.vim | |
parent | 718b37578cca47c3bf25a6a4439f28322b4f46c9 (diff) |
fixed C-l in pydoc overriding my window move mapping, some toggle cammands still don't work, also fixed backticks not appearing
Diffstat (limited to 'modules/vim-which-key.vim')
-rw-r--r-- | modules/vim-which-key.vim | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/vim-which-key.vim b/modules/vim-which-key.vim index 0bfb55cf..7d3cb4cf 100644 --- a/modules/vim-which-key.vim +++ b/modules/vim-which-key.vim @@ -33,13 +33,14 @@ let g:which_key_map['/'] = [ '<Plug>NERDCommenterToggle','commenter' ] let g:which_key_map['p'] = [ 'pclose','close-preview' ] let g:which_key_map['q'] = [ 'q','quit' ] let g:which_key_map['s'] = [ 'w','save' ] +let g:which_key_map['f'] = [ 'Denite file','files' ] let g:which_key_map.t = { \ 'name' : '+toggle' , - \ 'f' : ['NERDTreeToggle' , 'file-explorer'] , + \ 'e' : ['NERDTreeToggle' , 'file-explorer'] , \ 'b' : ['TagbarToggle' , 'tagbar'] , - \ 'l' : ['set nonumber!' , 'line-numbers'] , - \ 's' : ['nohlsearch' , 'remove-search-highlight'] , + \ 'n' : ['set nonumber!' , 'line-numbers'] , + \ 's' : [':nohlsearch' , 'remove-search-highlight'] , \ 'c' : ['ColorToggle' , 'remove-color'] , \ } @@ -48,14 +49,15 @@ let g:which_key_map.h = { \ 's' : ['nohlsearch' , 'remove-search-highlight'] , \ 'c' : ['ColorToggle' , 'remove-color'] , \ } - + "<Plug>(ale_hover)` "\ 'f' : ['LanguageClient#textDocument_formatting()' , 'formatting'] , + "\ 'h' : ['LanguageClient#textDocument_hover()' , 'hover'] , let g:which_key_map.l = { \ 'name' : '+lsp' , \ 'c' : ['LanguageClient_contextMenu()' , 'context_menu'] , \ 'f' : ['ALEFix' , 'formatting'] , \ 'i' : ['ALEInfo' , 'info'] , - \ 'h' : ['LanguageClient#textDocument_hover()' , 'hover'] , + \ 'h' : ['<Plug>(ale_hover)' , 'hover'] , \ 'r' : ['LanguageClient#textDocument_references()' , 'references'] , \ 'R' : ['LanguageClient#textDocument_rename()' , 'rename'] , \ 's' : ['LanguageClient#textDocument_documentSymbol()' , 'document-symbol'] , |