Last active
January 5, 2026 02:06
-
-
Save canadaduane/2ca9c3e1b6f139d9c2a5079667ed4c88 to your computer and use it in GitHub Desktop.
Open LazyGit in VSCode Terminal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "key": "cmd+shift+g", | |
| "command": "multiCommand.lazygit" | |
| } | |
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "multiCommand.commands": [ | |
| { | |
| "command": "multiCommand.lazygit", | |
| "sequence": [ | |
| "workbench.action.closeAuxiliaryBar", | |
| { | |
| "command": "workbench.action.tasks.runTask", | |
| "args": "LazyGit" | |
| }, | |
| "workbench.action.toggleMaximizedPanel" | |
| ] | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "LazyGit", | |
| "type": "process", | |
| "command": "/opt/homebrew/bin/lazygit", | |
| "presentation": { | |
| "panel": "dedicated", | |
| "reveal": "always", | |
| "focus": true, | |
| "echo": false | |
| }, | |
| "runOptions": { | |
| "instancePolicy": "silent" | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment