vscode_rainbow_csv icon indicating copy to clipboard operation
vscode_rainbow_csv copied to clipboard

Extension breaks intellisense/custom completions

Open Tristano8 opened this issue 2 years ago • 0 comments

Steps to reproduce:

  • Define a custom formatter in a VSCode extension
const completionProvider = vscode.languages.registerCompletionItemProvider('csv', {
		provideCompletionItems() {
			return [new vscode.CompletionItem("test")];
  • Install custom extension and edit a csv file with Rainbow CSV also installed

  • First three columns, the completion code runs: Screen Shot 2022-11-15 at 4 28 52 pm

  • After the third column, all subsequent completions do not run: Screen Shot 2022-11-15 at 4 29 03 pm

  • When running the above with Rainbow CSV disabled, this does not occur.

Tristano8 avatar Nov 15 '22 05:11 Tristano8