modal navigation in VSCode explorer
See original GitHub issueLove this extension! With the VSCodeVim extension, I can navigate the explorer pane (the tree view showing all files and folders) using j
and k
, just as in Vim. Is there a way to enable this modal motion using j
and k
in the tree view with this extension? Thanks!
I have been able to simulate this using the keybindings below but they require holding ctrl
pressed. Would be nice if I didn’t need to use ctrl
.
{
"key": "ctrl+j",
"command": "list.focusDown",
"when": "!editorFocus"
},
{
"key": "ctrl+k",
"command": "list.focusUp",
"when": "!editorFocus"
}
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:6 (5 by maintainers)
Top Results From Across the Web
modal navigation in VSCode explorer · Issue #457 - GitHub
With the VSCodeVim extension, I can navigate the explorer pane (the tree view showing all files and folders) using j and k ,...
Read more >Code Navigation in Visual Studio Code
The Explorer is great for navigating between files when you are exploring a ... VS Code provides two powerful commands to navigate in...
Read more >Mouseless Code Editing with VS Code | by alpha2phi - Medium
For VS Code, to support modal editing, there are mainly 2 extensions we can use ... Navigate between Terminal, Editor, and File Explorer....
Read more >How to create a modal for a VSCode extension?
VS Code (1.34) has no concept modal UI. Extensions can only show basic dialog messages modally using the showMessage apis.
Read more >Creating and Managing Modal Dialog Boxes - Visual Studio ...
Visual Studio Code. When you create a modal dialog box inside Visual Studio, you must make sure that the parent window of the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’ve been meaning to make a full request for a while, containing a ton of bindings I made to make the vscode experience much better. If I don’t get around to making it soon, here is one relevant section. Inspiration from VSCodeVim bindings and vspacecode.
Edit: Oh yes, and there needs to be a crucial setting configuration:
@David-Else Kind of - the solution is to use https://marketplace.visualstudio.com/items?itemName=pascalsenn.keyboard-quickfix .