Skip to content

Commit

Permalink
allow remapping of ctrl-j and ctrl-k in settings.json (#891)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Terry authored and johnfn committed Oct 12, 2016
1 parent 5066409 commit 65997a1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,16 @@
"command": "extension.vim_ctrl+b",
"when": "editorTextFocus && vim.mode != 'Insert Mode' && !inDebugRepl"
},
{
"key": "ctrl+j",
"command": "extension.vim_ctrl+j",
"when": "editorTextFocus && vim.mode != 'Insert Mode' && !inDebugRepl"
},
{
"key": "ctrl+k",
"command": "extension.vim_ctrl+k",
"when": "editorTextFocus && vim.mode != 'Insert Mode' && !inDebugRepl"
},
{
"key": "ctrl+h",
"command": "extension.vim_ctrl+h",
Expand Down

0 comments on commit 65997a1

Please sign in to comment.