Skip to content

Commit

Permalink
Merge pull request continuedev#3209 from continuedev/tomasz/disable-c…
Browse files Browse the repository at this point in the history
…ommit-completions

Disable completions in the commit box
  • Loading branch information
sestinj authored Dec 6, 2024
2 parents ee0e664 + 2b611df commit 2593515
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/vscode/src/autocomplete/completionProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,10 @@ export class ContinueCompletionProvider
return null;
}

if (document.uri.scheme === "vscode-scm") {
return null;
}

// If the text at the range isn't a prefix of the intellisense text,
// no completion will be displayed, regardless of what we return
if (
Expand Down

0 comments on commit 2593515

Please sign in to comment.