Add shortcuts for incrementing and changing case
This commit is contained in:
parent
1a7bc70bf7
commit
83515cdb92
1 changed files with 32 additions and 0 deletions
|
@ -44,4 +44,36 @@
|
||||||
"key": "ctrl+shift+0",
|
"key": "ctrl+shift+0",
|
||||||
"command": "workbench.action.zoomReset"
|
"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"
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue