-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add missing window keys (<C-w><C-[hjklovq]>) #2600
Changes from 4 commits
d43ec80
e9c401a
4aaaa0c
c7dfa83
4e327ad
78a91b1
13de31c
1968b0f
6c4e2cb
65fea7b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -210,11 +210,21 @@ | |
"command": "extension.vim_navigateLeft", | ||
"when": "vim.use<C-w> && vim.active && !editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+h", | ||
"command": "extension.vim_navigateCtrlH", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
}, | ||
{ | ||
"key": "ctrl+w l", | ||
"command": "extension.vim_navigateRight", | ||
"when": "vim.use<C-w> && vim.active && !editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+l", | ||
"command": "extension.vim_navigateCtrlL", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
}, | ||
{ | ||
"key": "ctrl+w ctrl+w", | ||
"command": "extension.vim_navigateGroups", | ||
|
@@ -225,16 +235,36 @@ | |
"command": "extension.vim_navigateDown", | ||
"when": "vim.use<C-w> && vim.active && !editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+j", | ||
"command": "extension.vim_navigateCtrlJ", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. similar to above. |
||
}, | ||
{ | ||
"key": "ctrl+w k", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm, don't think these keybindings are removed. We should only be binding to one single key combo here so any keys with |
||
"command": "extension.vim_navigateUp", | ||
"when": "vim.use<C-w> && vim.active && !editorTextFocus" | ||
}, | ||
{ | ||
"key": "ctrl+k", | ||
"command": "extension.vim_navigateCtrlK", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
}, | ||
{ | ||
"key": "ctrl+w", | ||
"command": "extension.vim_ctrl+w", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
}, | ||
{ | ||
"key": "ctrl+q", | ||
"command": "extension.vim_winCtrlQ", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
}, | ||
{ | ||
"key": "ctrl+v", | ||
"command": "extension.vim_winCtrlV", | ||
"when": "editorTextFocus && vim.active && vim.use<C-w> && !inDebugRepl" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
}, | ||
{ | ||
"key": "ctrl+c", | ||
"command": "extension.vim_ctrl+c", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be
<C-h>