Skip to content

Commit 02f4192

Browse files
authored
Change trigger inline suggestion keybinding to Ctrl+Alt+Space (#14669)
* Change trigger inline suggestion keybinding to Ctrl+Alt+Space fixed #14665
1 parent e4ca643 commit 02f4192

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/ai-code-completion/src/browser/ai-code-completion-preference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const AICodeCompletionPreferencesSchema: PreferenceSchema = {
2929
type: 'boolean',
3030
description: 'Automatically trigger AI completions inline within any (Monaco) editor while editing.\
3131
\n\
32-
Alternatively, you can manually trigger the code via the command "Trigger Inline Suggestion" or the default shortcut "SHIFT+Space".',
32+
Alternatively, you can manually trigger the code via the command "Trigger Inline Suggestion" or the default shortcut "Ctrl+Alt+Space".',
3333
default: false
3434
},
3535
[PREF_AI_INLINE_COMPLETION_EXCLUDED_EXTENSIONS]: {

packages/ai-code-completion/src/browser/ai-code-frontend-application-contribution.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class AIFrontendApplicationContribution implements FrontendApplicationCon
6565
registerKeybindings(keybindings: KeybindingRegistry): void {
6666
keybindings.registerKeybinding({
6767
command: 'editor.action.inlineSuggest.trigger',
68-
keybinding: 'Shift+Space',
68+
keybinding: 'Ctrl+Alt+Space',
6969
when: '!editorReadonly && editorTextFocus'
7070
});
7171
}

0 commit comments

Comments
 (0)