home/vscode: replace keyboard-quickfix with native solution

This commit is contained in:
Oystein Kristoffer Tveit 2024-12-22 23:43:18 +01:00
parent 9aaea1c28e
commit 6a0f5c8686
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146

View File

@ -202,8 +202,6 @@ in
"errorLens.errorBackground" = "rgba(240,0,0,0.1)";
"errorLens.warningBackground" = "rgba(180,180,0,0.1)";
"keyboard-quickfix.showActionNotification" = false;
"liveshare.presence" = true;
"liveshare.showInStatusBar" = "whileCollaborating";
@ -238,9 +236,15 @@ in
keybindings = [
{
key = "ctrl+[Period]";
command = "keyboard-quickfix.openQuickFix";
when = "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly";
key = "alt+k";
when = "codeActionMenuVisible";
command = "selectPrevCodeAction";
}
{
key = "alt+j";
when = "codeActionMenuVisible";
command = "selectNextCodeAction";
}
{