File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -111,12 +111,14 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
111111 const htmlRegex = / c l a s s = [ " | ' ] ( [ \w - ] * $ ) / ;
112112 const jsxRegex = / c l a s s N a m e = [ " | ' ] ( [ \w - ] * $ ) / ;
113113
114- const html = provideCompletionItemsGenerator ( 'html' , htmlRegex )
114+ const html = provideCompletionItemsGenerator ( 'html' , htmlRegex ) ;
115+ const vue = provideCompletionItemsGenerator ( 'vue' , htmlRegex ) ;
115116 const tsReact = provideCompletionItemsGenerator ( 'typescriptreact' , jsxRegex ) ;
116117 const js = provideCompletionItemsGenerator ( 'javascript' , jsxRegex )
117118 const jsReact = provideCompletionItemsGenerator ( 'javascriptreact' , jsxRegex ) ;
118119
119120 context . subscriptions . push ( html ) ;
121+ context . subscriptions . push ( vue ) ;
120122 context . subscriptions . push ( tsReact ) ;
121123 context . subscriptions . push ( js ) ;
122124 context . subscriptions . push ( jsReact ) ;
You can’t perform that action at this time.
0 commit comments