Skip to content

Commit 2b611df

Browse files
fix: disable completions in the commit box
1 parent 7e2dfb9 commit 2b611df

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extensions/vscode/src/autocomplete/completionProvider.ts

+4
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ export class ContinueCompletionProvider
101101
return null;
102102
}
103103

104+
if (document.uri.scheme === "vscode-scm") {
105+
return null;
106+
}
107+
104108
// If the text at the range isn't a prefix of the intellisense text,
105109
// no completion will be displayed, regardless of what we return
106110
if (

0 commit comments

Comments
 (0)