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" }
},
{ // terminus -- open terminal in current file directory <Ctrl+Alt+T>
"keys": ["ctrl+alt+t"],
{ // terminus -- open terminal in current file directory <Ctrl+[>
"keys": ["ctrl+["],
"command": "toggle_terminus_panel",
"args": { "cwd": "${file_path:${folder}}" }
},
{ // terminus -- close terminal while it is in focus with <Ctrl+W>
"keys": ["ctrl+w"],
{ // terminus -- close terminal while it is in focus with <Ctrl+]>
"keys": ["ctrl+]"],
"command": "terminus_close",
"context": [{ "key": "terminus_view"}]
},