Skip to content

Commit 369a9e4

Browse files
authored
Update Copilot shortcut to snooze instead of toggle (#55)
Since these recommendations were created, Copilot gained a new feature that lets you snooze notifications for a few minutes. I think this is better than fully toggling completions off, because then you don't have to remember to turn completions back on later.
1 parent 525eb7f commit 369a9e4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ai_tools/ai_autocomplete.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,12 @@ These keybindings incorporate the above suggestions and address a few other conf
4848
"when": "inlineSuggestionVisible && !editorReadonly"
4949
},
5050

51-
// Recommended shortcut to toggle inline completions
51+
// Recommended shortcut to temporarily pause inline completions.
52+
// This will prompt to select a duration to snooze suggestions.
5253
{
5354
"key": "cmd+k cmd+a",
54-
"command": "github.copilot.completions.toggle"
55+
"command": "editor.action.inlineSuggest.snooze",
56+
"when": "editorFocus",
5557
}
5658
]
5759
```

0 commit comments

Comments
 (0)