🐛 fix(vscodium): trigger which-key menu when inside the editor or the fileExplorer
This commit is contained in:
parent
ac961320ff
commit
f4e5b82aaf
2 changed files with 3 additions and 3 deletions
|
@ -288,7 +288,7 @@
|
|||
{
|
||||
"key": "space",
|
||||
"command": "whichkey.show",
|
||||
"when": "neovim.mode != 'insert' && !inputFocus"
|
||||
"when": "editorFocus || filesExplorerFocus && !inputFocus && neovim.mode != 'insert'"
|
||||
},
|
||||
{
|
||||
"key": "alt+enter",
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue