Created
April 9, 2024 13:01
-
-
Save cshaa/bf782dbf03e7bd1181b303c07bc0193b to your computer and use it in GitHub Desktop.
Toggle visibility and focus of the VS Code Outline view
This file contains 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": "ctrl+alt+o", | |
"command": "runCommands", | |
"args": { | |
"commands": [ | |
"outline.removeView", | |
"workbench.action.focusActiveEditorGroup" | |
] | |
}, | |
"when": "outline.active" | |
}, | |
{ | |
"key": "ctrl+alt+o", | |
"command": "runCommands", | |
"args": { | |
"commands": [ | |
"outline.focus", | |
"workbench.action.focusActiveEditorGroup", | |
"outline.followCursor", | |
"outline.focus" | |
] | |
}, | |
"when": "editorTextFocus" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment