-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Add editorconfig language server #2407
Conversation
it only works for |
@glepnir Correct |
so why we need |
A copy paste artefact. I'll remove it.
What do you mean with single file mode? |
|
I tried to read what the |
add |
@@ -0,0 +1,24 @@ | |||
local util = require 'lspconfig.util' | |||
|
|||
local root_files = { '.editorconfig' } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
local root_files = { '.editorconfig' } |
return { | ||
default_config = { | ||
cmd = { 'ecls', '--stdio' }, | ||
filetypes = { 'editorconfig' }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
filetypes = { 'editorconfig' }, | |
filetypes = { 'editorconfig' }, | |
root_files = { '.editorconfig' }, |
well. I think it would be better support that. because it only work for |
no thanks. configs should not be added here unless they are actually used by many people. also why does editorconfig need a lsp server? |
Hi!
I have made a WIP language server for editorconfig.
Can this server configuration be added upsteam?