diff options
author | Chris <[email protected]> | 2021-03-17 02:24:41 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-17 02:24:41 -0400 |
commit | 20b8eb1c330dbfbaf951d3a18430190bc5e51eca (patch) | |
tree | 080d7be8e360d98978a94abab6a61355ff56f268 | |
parent | 37179bc46d079c4d0d553d5c134eea38d620291a (diff) |
update whichkey
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | vimscript/nv-whichkey/init.vim | 3 |
2 files changed, 2 insertions, 2 deletions
@@ -45,7 +45,6 @@ $HOME/.config/nvim/lua/nv-vscode/init.vim **HIGH PRIORITY** - formatting using efm server for python - formatting using efm server for prettier/eslint -- add git signs to whichkey (This will require wrapping in Lua commands) - snippet support **LOW PRIORITY** diff --git a/vimscript/nv-whichkey/init.vim b/vimscript/nv-whichkey/init.vim index af715242..6474dfb0 100644 --- a/vimscript/nv-whichkey/init.vim +++ b/vimscript/nv-whichkey/init.vim @@ -144,9 +144,10 @@ let g:which_key_map.g = { \ 'j' : [':NextHunk' , 'next hunk'], \ 'k' : [':PrevHunk' , 'prev hunk'], \ 'l' : [':Git log' , 'log'], + \ 'n' : [':Neogit' , 'neogit'], \ 'p' : [':PreviewHunk' , 'preview hunk'], \ 'r' : [':ResetHunk' , 'reset hunk'], - \ 'r' : [':ResetBuffer' , 'reset buffer'], + \ 'R' : [':ResetBuffer' , 'reset buffer'], \ 's' : [':StageHunk' , 'stage hunk'], \ 'S' : [':Gstatus' , 'status'], \ 'u' : [':UndoStageHunk' , 'undo stage hunk'], |