-
-
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
Navigate between view #1504
Navigate between view #1504
Conversation
package.json
Outdated
@@ -187,6 +187,31 @@ | |||
"when": "editorTextFocus && vim.use<C-[> && !inDebugRepl" | |||
}, | |||
{ | |||
"key": "ctrl+w h", | |||
"command": "extension.vim_navigateLeft", | |||
"when": "vim.use<C-w>" |
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.
these are all for when !editorTextFocus right? we should add !editorTextFocus
Because then the actions.ts ones cover when we are focused?
This is awesome. Would love to see it land. |
I didn't even read/see who you were :) |
This will save my life. |
I am not a huge fan of defining keybindings purely in package.json because then we can't remap them. :/ |
@johnfn I see your points. Let's see if |
I don't think this handles ctrl+w j and ctrl+w k right? |
@rebornix Any reason why only ctrl+w h/l is supported? |
|
Ref #1375. Leverage new Code api to navigate between viewlets, panels, editors by -.
This is contributed by rebornix/Peng's personal account on his personal machine in personal time.