Browse Source

fix scope

Martin Aeschlimann 4 years ago
parent
commit
3f845fdad1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/languageFeatures.ts

+ 1 - 1
src/languageFeatures.ts

@@ -157,7 +157,7 @@ function toTextEdit(textEdit: htmlService.TextEdit): editor.ISingleEditOperation
 	};
 }
 
-function toCommand(c: cssService.Command | undefined): languages.Command {
+function toCommand(c: htmlService.Command | undefined): languages.Command {
 	return c && c.command === 'editor.action.triggerSuggest' ? { id: c.command, title: c.title, arguments: c.arguments } : undefined
 }