mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
20 lines
531 B
Nix
20 lines
531 B
Nix
![]() |
{
|
||
|
keybindings = [
|
||
|
{
|
||
|
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";
|
||
|
}
|
||
|
];
|
||
|
}
|