We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5bb9c5 commit 15c67a7Copy full SHA for 15c67a7
src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsModel.ts
@@ -285,7 +285,7 @@ export class InlineCompletionsSession extends BaseGhostTextWidgetModel {
285
const cursorPosition = model.validatePosition(this.editor.getPosition());
286
this.filteredCompletions = this.cache.value.completions.filter(c => {
287
const originalValue = model.getValueInRange(c.synchronizedRange).toLowerCase();
288
- const filterText = c.inlineCompletion.filterText;
+ const filterText = c.inlineCompletion.filterText.toLowerCase();
289
290
const indent = model.getLineIndentColumn(c.synchronizedRange.startLineNumber);
291
0 commit comments