LazyTerm for Vscode
This is a fork of https://github.com/tom-pollak/lazygit-vscode to run a terminal and arbitrary command
Quickstart
"keybindings": [
{
"command": "lazyterm-vscode.toggle1",
"key": "alt+shift+t",
"mac": "alt+shift+t"
},
{
"command": "lazyterm-vscode.toggle2",
"key": "alt+shift+g",
"mac": "alt+shift+g"
}
],
"configuration": {
"title": "LazyTerm",
"properties": {
"lazyterm-vscode.autoMaximizeWindow": {
"type": "boolean",
"description": "Fullscreen the terminal window, hiding any splits (this also minimizes sidebar)",
"scope": "window"
},
"lazyterm-vscode.startCommand1": {
"type": "string",
"description": "start command 1",
"scope": "window"
},
"lazyterm-vscode.startCommand2": {
"type": "string",
"description": "start command 2",
"scope": "window"
},
"lazyterm-vscode.beZen": {
"type": "boolean",
"description": "Be Zen when shown",
"scope": "window"
}
}
}
| |