diff options
Diffstat (limited to 'keys')
| -rw-r--r-- | keys/which-key.vim | 50 | 
1 files changed, 26 insertions, 24 deletions
| diff --git a/keys/which-key.vim b/keys/which-key.vim index a7ff908a..19dfbbc7 100644 --- a/keys/which-key.vim +++ b/keys/which-key.vim @@ -73,31 +73,32 @@ let g:which_key_map.b = {  " s is for search  let g:which_key_map.s = {        \ 'name' : '+search' , -      \ '/' : [':History/'     , 'history'], -      \ ';' : [':Commands'     , 'commands'], -      \ 'a' : [':Ag'           , 'text Ag'], -      \ 'b' : [':BLines'       , 'current buffer'], -      \ 'B' : [':Buffers'      , 'open buffers'], -      \ 'c' : [':Commits'      , 'commits'], -      \ 'C' : [':BCommits'     , 'buffer commits'], -      \ 'f' : [':Files'        , 'files'], -      \ 'g' : [':GFiles'       , 'git files'], -      \ 'G' : [':GFiles?'      , 'modified git files'], -      \ 'h' : [':History'      , 'file history'], -      \ 'H' : [':History:'     , 'command history'], -      \ 'l' : [':Lines'        , 'lines'] , -      \ 'm' : [':Marks'        , 'marks'] , -      \ 'M' : [':Maps'         , 'normal maps'] , -      \ 'p' : [':Helptags'     , 'help tags'] , -      \ 'P' : [':Tags'         , 'project tags'], -      \ 's' : [':Snippets'     , 'snippets'], -      \ 'S' : [':Colors'       , 'color schemes'], -      \ 't' : [':Rg'           , 'text Rg'], -      \ 'T' : [':BTags'        , 'buffer tags'], -      \ 'w' : [':Windows'      , 'search windows'], -      \ 'y' : [':Filetypes'    , 'file types'], -      \ 'z' : [':FZF'          , 'FZF'], +      \ '/' : [':History/'              , 'history'], +      \ ';' : [':Commands'              , 'commands'], +      \ 'a' : [':Ag'                    , 'text Ag'], +      \ 'b' : [':BLines'                , 'current buffer'], +      \ 'B' : [':Buffers'               , 'open buffers'], +      \ 'c' : [':Commits'               , 'commits'], +      \ 'C' : [':BCommits'              , 'buffer commits'], +      \ 'f' : [':Files'                 , 'files'], +      \ 'g' : [':GFiles'                , 'git files'], +      \ 'G' : [':GFiles?'               , 'modified git files'], +      \ 'h' : [':History'               , 'file history'], +      \ 'H' : [':History:'              , 'command history'], +      \ 'l' : [':Lines'                 , 'lines'] , +      \ 'm' : [':Marks'                 , 'marks'] , +      \ 'M' : [':Maps'                  , 'normal maps'] , +      \ 'p' : [':Helptags'              , 'help tags'] , +      \ 'P' : [':Tags'                  , 'project tags'], +      \ 's' : [':CocList snippets'      , 'snippets'], +      \ 'S' : [':Colors'                , 'color schemes'], +      \ 't' : [':Rg'                    , 'text Rg'], +      \ 'T' : [':BTags'                 , 'buffer tags'], +      \ 'w' : [':Windows'               , 'search windows'], +      \ 'y' : [':Filetypes'             , 'file types'], +      \ 'z' : [':FZF'                   , 'FZF'],        \ } +      " \ 's' : [':Snippets'     , 'snippets'],  " g is for git  let g:which_key_map.g = { @@ -156,6 +157,7 @@ let g:which_key_map.l = {        \ 'r' : ['<Plug>(coc-rename)'                  , 'rename'],        \ 'R' : ['<Plug>(coc-references)'              , 'references'],        \ 's' : [':CocList -I symbols'                 , 'references'], +      \ 'S' : [':CocList snippets'                   , 'snippets'],        \ 't' : ['<Plug>(coc-type-definition)'         , 'type definition'],        \ 'u' : [':CocListResume'                      , 'resume list'],        \ 'U' : [':CocUpdate'                          , 'update CoC'], | 
