diff options
| author | Chris <[email protected]> | 2020-11-04 20:10:07 -0500 | 
|---|---|---|
| committer | Chris <[email protected]> | 2020-11-04 20:10:07 -0500 | 
| commit | ef76fa96acca46c9504fafa8bccc8edcc936402e (patch) | |
| tree | 7447f2ca07b06f893cb18ece67e10ab1ceea6a5d | |
| parent | c9503e3628154900a02221c180d635e99bb8489c (diff) | |
swap leader q to quickfix
| -rw-r--r-- | keys/which-key.vim | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/keys/which-key.vim b/keys/which-key.vim index cbc7d5ed..38d972a6 100644 --- a/keys/which-key.vim +++ b/keys/which-key.vim @@ -28,22 +28,22 @@ autocmd  FileType which_key set laststatus=0 noshowmode noruler  " Single mappings -let g:which_key_map['/'] = [ ':call Comment()'                    , 'comment' ] -let g:which_key_map['.'] = [ ':e $MYVIMRC'                        , 'open init' ] -let g:which_key_map[';'] = [ ':Commands'                          , 'commands' ] -let g:which_key_map['='] = [ '<C-W>='                             , 'balance windows' ] -let g:which_key_map['d'] = [ ':Bdelete'                           , 'delete buffer'] -let g:which_key_map['e'] = [ ':CocCommand explorer --toggle --sources=file+'               , 'explorer' ] -let g:which_key_map['h'] = [ '<C-W>s'                             , 'split below'] -let g:which_key_map['n'] = [ ':let @/ = ""'                       , 'no highlight' ] -let g:which_key_map['o'] = [ ':RnvimrToggle'                      , 'open' ] -let g:which_key_map['p'] = [ ':Files'                             , 'search files' ] -let g:which_key_map['q'] = [ 'q'                                  , 'quit' ] -let g:which_key_map['T'] = [ ':TSHighlightCapturesUnderCursor'    , 'treesitter highlight' ] -let g:which_key_map['u'] = [ ':UndotreeToggle'                    , 'undo tree'] -let g:which_key_map['v'] = [ '<C-W>v'                             , 'split right'] -let g:which_key_map['W'] = [ ':call WindowSwap#EasyWindowSwap()'  , 'move window' ] -let g:which_key_map['z'] = [ 'Goyo'                               , 'zen' ] +let g:which_key_map['/'] = [ ':call Comment()'                                 , 'comment' ] +let g:which_key_map['.'] = [ ':e $MYVIMRC'                                     , 'open init' ] +let g:which_key_map[';'] = [ ':Commands'                                       , 'commands' ] +let g:which_key_map['='] = [ '<C-W>='                                          , 'balance windows' ] +let g:which_key_map['d'] = [ ':Bdelete'                                        , 'delete buffer'] +let g:which_key_map['e'] = [ ':CocCommand explorer --toggle --sources=file+'   , 'explorer' ] +let g:which_key_map['h'] = [ '<C-W>s'                                          , 'split below'] +let g:which_key_map['n'] = [ ':let @/ = ""'                                    , 'no highlight' ] +let g:which_key_map['o'] = [ ':RnvimrToggle'                                   , 'open' ] +let g:which_key_map['p'] = [ ':Files'                                          , 'search files' ] +let g:which_key_map['q'] = [ '<Plug>(coc-fix-current)'                         , 'quickfix' ] +let g:which_key_map['T'] = [ ':TSHighlightCapturesUnderCursor'                 , 'treesitter highlight' ] +let g:which_key_map['u'] = [ ':UndotreeToggle'                                 , 'undo tree'] +let g:which_key_map['v'] = [ '<C-W>v'                                          , 'split right'] +let g:which_key_map['W'] = [ ':call WindowSwap#EasyWindowSwap()'               , 'move window' ] +let g:which_key_map['z'] = [ 'Goyo'                                            , 'zen' ]  " Group mappings | 
