Skip to content

Commit

Permalink
fix: space trigger character missing for typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Apr 24, 2022
1 parent c7ca906 commit a59566b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function register(
}
if (features.completion) {
server.completionProvider = {
triggerCharacters: '!@#$%^&*()_+-=`~{}|[]\:";\'<>?,./'.split(''), // all symbols on keyboard
triggerCharacters: '!@#$%^&*()_+-=`~{}|[]\:";\'<>?,./ '.split(''), // all symbols on keyboard
resolveProvider: true,
};
server.executeCommandProvider = {
Expand Down

0 comments on commit a59566b

Please sign in to comment.