We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
initialize
request
This library would be a bit more useful if it allowed to configure language servers or otherwise extend its functionality.
Currently it is not possible to cleanly override the behaviour of the LanguageServerClient because:
LanguageServerClient
initialize()
private
@ts-ignore
Would you consider a PR which:
protected
codemirror-languageserver/src/index.ts
Line 219 in d8c88a4
Lines 123 to 182 in d8c88a4
The text was updated successfully, but these errors were encountered:
The same would apply to access to notify method :)
notify
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This library would be a bit more useful if it allowed to configure language servers or otherwise extend its functionality.
Currently it is not possible to cleanly override the behaviour of the
LanguageServerClient
because:initialize
options are hard-coded ininitialize()
method; while this method is public and can be overridden by copy-pasting,request
is marked asprivate
which means that we need to use@ts-ignore
Would you consider a PR which:
request
toprotected
so that it can be used in subclassescodemirror-languageserver/src/index.ts
Line 219 in d8c88a4
initialize
options to aprotected
method?codemirror-languageserver/src/index.ts
Lines 123 to 182 in d8c88a4
The text was updated successfully, but these errors were encountered: