Skip to content

Instantly share code, notes, and snippets.

@nikgalushko
Created December 23, 2018 18:05
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 nikgalushko/1c848547dea1bf8f64f6dea2ce0ea873 to your computer and use it in GitHub Desktop.
Save nikgalushko/1c848547dea1bf8f64f6dea2ce0ea873 to your computer and use it in GitHub Desktop.
// Поместите настраиваемые сочетания клавиш в этот файл, чтобы перезаписать клавиши по умолчанию.
[
{
"key": "shift+cmd+-",
"command": "editor.foldAll",
"when": "editorTextFocus"
},
{
"key": "cmd+k cmd+0",
"command": "-editor.foldAll",
"when": "editorTextFocus"
},
{
"key": "cmd+-",
"command": "editor.fold",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+[",
"command": "-editor.fold",
"when": "editorTextFocus"
},
{
"key": "cmd+=",
"command": "editor.unfold",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+]",
"command": "-editor.unfold",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+=",
"command": "editor.unfoldAll",
"when": "editorTextFocus"
},
{
"key": "cmd+k cmd+j",
"command": "-editor.unfoldAll",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment