dotfiles/files/vscode-keybindings.json

80 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2018-02-19 15:40:01 +00:00
[
{
"key": "alt+right",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "alt+left",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
2018-05-27 16:36:42 +01:00
},
{
"key": "ctrl+shift+t",
"command": "-DocFX.showTokenTreeToSide",
"when": "editorTextFocus"
2018-05-27 16:51:07 +01:00
},
{
"key": "ctrl+shift+l",
"command": "workbench.action.editor.changeLanguageMode"
},
2019-11-06 09:29:52 +00:00
{
"key": "ctrl+9",
"command": "-workbench.action.lastEditorInGroup"
},
{
"key": "ctrl+9",
"command": "editor.action.fontZoomIn"
},
{
"key": "ctrl+8",
"command": "editor.action.fontZoomOut"
},
{
"key": "ctrl+0",
"command": "editor.action.fontZoomReset"
},
{
"key": "ctrl+shift+0",
"command": "workbench.action.zoomReset"
},
{
"key": "alt+c u",
"command": "extension.changeCase.upper"
},
{
"key": "alt+c l",
"command": "extension.changeCase.lower"
},
{
"key": "alt+c alt+up",
"command": "editor.emmet.action.incrementNumberByOne"
},
{
"key": "alt+c alt+down",
"command": "editor.emmet.action.decrementNumberByOne"
},
{
"key": "alt+c alt+pagedown",
"command": "editor.emmet.action.decrementNumberByTen"
},
{
"key": "alt+c alt+pageup",
"command": "editor.emmet.action.incrementNumberByTen"
},
{
"key": "alt+c down",
"command": "editor.emmet.action.decrementNumberByOneTenth"
},
{
"key": "alt+c up",
"command": "editor.emmet.action.incrementNumberByOneTenth"
}
2018-04-06 21:22:03 +01:00
]