🐛 fix(vscodium): trigger which-key menu when inside the editor or the fileExplorer

This commit is contained in:
Sergio Laín 2024-06-01 01:36:49 +02:00
parent ac961320ff
commit f4e5b82aaf
No known key found for this signature in database
GPG key ID: FB00AF7015FFE76B
2 changed files with 3 additions and 3 deletions

View file

@ -288,7 +288,7 @@
{
"key": "space",
"command": "whichkey.show",
"when": "neovim.mode != 'insert' && !inputFocus"
"when": "editorFocus || filesExplorerFocus && !inputFocus && neovim.mode != 'insert'"
},
{
"key": "alt+enter",

View file

@ -163,7 +163,7 @@
"animations.CursorAnimationOptions": {
"Color": "#b7bdf8",
"CursorStyle": "block",
"TrailLength": 3
"TrailLength": 2
},
"animations.Active": "Indent",
"animations.Scrolling": "Slide",
@ -1118,7 +1118,7 @@
}
],
"workbench.statusBar.visible": false,
"editor.matchBrackets": "never",
"editor.matchBrackets": false,
"workbench.editor.showTabs": "multiple",
"workbench.activityBar.location": "hidden"
}