mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
27 lines
700 B
Nix
Executable file
27 lines
700 B
Nix
Executable file
[
|
|
{
|
|
key = "ctrl+shift+s";
|
|
command = "editor.action.insertCursorAtEndOfEachLineSelected";
|
|
when = "textInputFocus";
|
|
}
|
|
{
|
|
key = "ctrl+shift+a";
|
|
command = "editor.action.quickFix";
|
|
when = "editorHasCodeActionsProvider && textInputFocus && !editorReadonly";
|
|
}
|
|
{
|
|
key = "ctrl+shift+f";
|
|
command = "editor.action.formatDocument";
|
|
when = "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor";
|
|
}
|
|
{
|
|
key = "ctrl+shift+tab";
|
|
command = "editor.action.indentationToSpaces";
|
|
when = "textInputFocus";
|
|
}
|
|
{
|
|
key = "ctrl+shift+d";
|
|
command = "editor.action.deleteLines";
|
|
when = "textInputFocus";
|
|
}
|
|
]
|