Skip to content

Instantly share code, notes, and snippets.

@m93a
Created April 9, 2024 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m93a/bf782dbf03e7bd1181b303c07bc0193b to your computer and use it in GitHub Desktop.
Save m93a/bf782dbf03e7bd1181b303c07bc0193b to your computer and use it in GitHub Desktop.
Toggle visibility and focus of the VS Code Outline view
[
{
"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