-
I just found out about I know it's possible to run multiple language servers in one buffer (like how eslint support is implemented in lsp-mode) but I feel like it'd be tedious to write an entire language server that just wraps a tool like prettier (or codespell, or cspell, or eslint, etc). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
In emacs the problems that null-ls is solving do not exist in the first place because lsp-mode is just a normal backend for existing emacs pacakges like flycheck/flymake/helm/ivy/etc and you can always add advice over lsp-request to plug a particular data.
I don't understand that, can you elaborate? |
Beta Was this translation helpful? Give feedback.
-
The version of The package it's being replaced with is I believe yyoncho is correct that this problem doesn't really exist because of So I guess the answer to your question is: no, nothing exists in LSP but other options exist in emacs. |
Beta Was this translation helpful? Give feedback.
In emacs the problems that null-ls is solving do not exist in the first place because lsp-mode is just a normal backend for existing emacs pacakges like flycheck/flymake/helm/ivy/etc and you can always add advice over lsp-request to plug a particular data.
I don't understand that, can you elaborate?