Skip to content

Commit 2593515

Browse files
authored
Merge pull request #3209 from continuedev/tomasz/disable-commit-completions
Disable completions in the commit box
2 parents ee0e664 + 2b611df commit 2593515

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)