Skip to content

Commit

Permalink
feat: make sure @ triggers directive completion automatically (#1441)
Browse files Browse the repository at this point in the history
  • Loading branch information
zth committed Mar 31, 2020
1 parent 6c335a8 commit 935220a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ export class MessageProcessor {
capabilities: {
workspaceSymbolProvider: true,
documentSymbolProvider: true,
completionProvider: { resolveProvider: true },
completionProvider: {
resolveProvider: true,
triggerCharacters: ['@'],
},
definitionProvider: true,
textDocumentSync: 1,
hoverProvider: true,
Expand Down

0 comments on commit 935220a

Please sign in to comment.