File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import ParseEngineGateway from './parse-engine-gateway';
1010let notifier : Notifier = new Notifier ( 'html-css-class-completion.cache' ) ;
1111let uniqueDefinitions : CssClassDefinition [ ] = [ ] ;
1212
13- const completionTriggerChars = [ '"' , '\'' , ' ' ] ;
13+ const completionTriggerChars = [ '"' , '\'' , ' ' , '.' ] ;
1414
1515let caching : boolean = false ;
1616
@@ -135,7 +135,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
135135 // CSS based extensions
136136 [ 'css' , 'sass' , 'scss' ] . forEach ( ( extension ) => {
137137 // Support for Tailwind CSS
138- context . subscriptions . push ( provideCompletionItemsGenerator ( extension , / @ a p p l y ( [ \w - ] * $ ) / ) ) ;
138+ context . subscriptions . push ( provideCompletionItemsGenerator ( extension , / @ a p p l y ( [ \. \ w- ] * $ ) / , '.' ) ) ;
139139 } ) ;
140140
141141 caching = true ;
You can’t perform that action at this time.
0 commit comments