🔧 Got toggle tree working on vs codium

This commit is contained in:
z3rOR0ne 2024-03-17 20:03:52 -07:00
parent 010a50f222
commit f2f8cfb18d
2 changed files with 53 additions and 21 deletions

View file

@ -1,20 +1,24 @@
// Place your key bindings in this file to override the defaults
[
{
"key": "alt+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+right",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "alt+left",
"command": "workbench.action.previousEditor"
}
]
{
"key": "alt+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+right",
"command": "workbench.action.nextEditor"
},
{
"key": "alt+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "alt+left",
"command": "workbench.action.previousEditor"
},
{
"key": "space '",
"command": "workbench.action.toggleSidebarVisibility",
"when": "sideBarFocus"
}
]