Add vscode keyboard shortcuts file

This commit is contained in:
Jake Howard 2018-02-19 15:40:01 +00:00
parent 8c0258e811
commit f1040efe3c
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,18 @@
[
{
"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"
}
]

View File

@ -46,4 +46,11 @@ class config::vscode {
path => '/home/jake/.config/Code/User/settings.json',
source => 'puppet:///modules/config/vscode-settings.json'
}
file { 'VSCode keybindings':
ensure => file,
mode => '0644',
path => '/home/jake/.config/Code/User/keybindings.json',
source => 'puppet:///modules/config/vscode-keybindings.json'
}
}