vscode: add cmd+shift+esc keybinding

This commit is contained in:
Frank
2025-07-27 15:54:45 -04:00
parent 3eb982c8cd
commit a07d149e28
4 changed files with 93 additions and 69 deletions

View File

@@ -26,7 +26,15 @@
"commands": [
{
"command": "opencode.openTerminal",
"title": "Open Terminal with Opencode",
"title": "Open opencode",
"icon": {
"light": "images/button-dark.svg",
"dark": "images/button-light.svg"
}
},
{
"command": "opencode.openNewTerminal",
"title": "Open opencode in new tab",
"icon": {
"light": "images/button-dark.svg",
"dark": "images/button-light.svg"
@@ -40,7 +48,7 @@
"menus": {
"editor/title": [
{
"command": "opencode.openTerminal",
"command": "opencode.openNewTerminal",
"group": "navigation"
}
]
@@ -54,6 +62,14 @@
"win": "ctrl+escape",
"linux": "ctrl+escape"
},
{
"command": "opencode.openNewTerminal",
"title": "Run opencode",
"key": "cmd+shift+escape",
"mac": "cmd+shift+escape",
"win": "ctrl+shift+escape",
"linux": "ctrl+shift+escape"
},
{
"command": "opencode.addFilepathToTerminal",
"title": "opencode: Insert At-Mentioned",