-
Is there a way to override the completion trigger characters? |
Beta Was this translation helpful? Give feedback.
Answered by
msujew
Feb 14, 2023
Replies: 1 comment 1 reply
-
You can override the protected override buildInitializeResult(params: InitializeParams): InitializeResult {
const result = super.buildInitializeResults(params);
result.capabilities.completion = { ... };
return result;
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
MechMel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can override the
DefaultLanguageServer
class'buildInitializeResult
method with something like this: