Fix Terminus shortcut for Linux

This commit is contained in:
Hao Tran 2024-09-19 05:21:16 -04:00
parent eb88a08c4e
commit ece57a6cf1

View File

@ -10,13 +10,13 @@
"args": {"target": "browser", "parser":"markdown" } "args": {"target": "browser", "parser":"markdown" }
}, },
{ // terminus -- open terminal in current file directory <Ctrl+Alt+T> { // terminus -- open terminal in current file directory <Ctrl+[>
"keys": ["ctrl+alt+t"], "keys": ["ctrl+["],
"command": "toggle_terminus_panel", "command": "toggle_terminus_panel",
"args": { "cwd": "${file_path:${folder}}" } "args": { "cwd": "${file_path:${folder}}" }
}, },
{ // terminus -- close terminal while it is in focus with <Ctrl+W> { // terminus -- close terminal while it is in focus with <Ctrl+]>
"keys": ["ctrl+w"], "keys": ["ctrl+]"],
"command": "terminus_close", "command": "terminus_close",
"context": [{ "key": "terminus_view"}] "context": [{ "key": "terminus_view"}]
}, },