home/vscode: replace keyboard-quickfix with native solution
This commit is contained in:
parent
9aaea1c28e
commit
6a0f5c8686
@ -202,8 +202,6 @@ in
|
|||||||
"errorLens.errorBackground" = "rgba(240,0,0,0.1)";
|
"errorLens.errorBackground" = "rgba(240,0,0,0.1)";
|
||||||
"errorLens.warningBackground" = "rgba(180,180,0,0.1)";
|
"errorLens.warningBackground" = "rgba(180,180,0,0.1)";
|
||||||
|
|
||||||
"keyboard-quickfix.showActionNotification" = false;
|
|
||||||
|
|
||||||
"liveshare.presence" = true;
|
"liveshare.presence" = true;
|
||||||
"liveshare.showInStatusBar" = "whileCollaborating";
|
"liveshare.showInStatusBar" = "whileCollaborating";
|
||||||
|
|
||||||
@ -238,9 +236,15 @@ in
|
|||||||
|
|
||||||
keybindings = [
|
keybindings = [
|
||||||
{
|
{
|
||||||
key = "ctrl+[Period]";
|
key = "alt+k";
|
||||||
command = "keyboard-quickfix.openQuickFix";
|
when = "codeActionMenuVisible";
|
||||||
when = "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly";
|
command = "selectPrevCodeAction";
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
key = "alt+j";
|
||||||
|
when = "codeActionMenuVisible";
|
||||||
|
command = "selectNextCodeAction";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user