-
-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Support for editors other than VSCode #96
Comments
The language client is already responsible to perform the necessary configuration changes, like the README says:
For example, the documentation for
It works like this: First, the language client requests code actions from the server. If there's an unknown word, then a code action with kind In the case of VS Code, the language client There's also the custom request |
Oh I was confused since the documentation mentions Maybe it's worthwhile to update README to make it less confusing? What do you think? |
Again, I'm not sure what you mean. The documentation of However, this has to be separated from the fact that I'm not sure how to make the available info any clearer. What would your proposal look like? |
Oh sorry. It was indeed my misunderstanding. Thank you for your patience on my non-sense. I will close this issue. |
Is your feature request related to a problem? Please describe.
Currently, code actions like
Add "..." to dictionary
orDisable rule
work only in VSCode, as their behavior depends on VSCode setting modification. It will be nicer if it can delegate the responsibility of modifying the setting to clients so that those actions work with other editors, e.g., Emacs.Describe the solution you'd like
Delegating the responsibility of modifying the setting to clients if possible. (Though this requires some client update too)
Describe alternatives you've considered
Additional context
I'm using LSP-mode on Emacs with lsp-ltex.
The text was updated successfully, but these errors were encountered: