|
@@ -24,16 +24,21 @@ if vim.fn.executable("node_modules/.bin/eslint") == 1 then
|
|
|
settings = {
|
|
|
options = options,
|
|
|
},
|
|
|
- on_attach = function(client, bufnr)
|
|
|
+ handlers = {
|
|
|
+ ["client/registerCapability"] = function(err, result, ctx, config)
|
|
|
+
|
|
|
+ return vim.NIL
|
|
|
+ end
|
|
|
+ },
|
|
|
+ on_init = function(client)
|
|
|
|
|
|
|
|
|
|
|
|
client.server_capabilities.documentFormattingProvider = true
|
|
|
client.server_capabilities.documentRangeFormattingProvider = true
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
end,
|
|
|
+
|
|
|
+
|
|
|
})
|
|
|
end
|
|
|
|
|
@@ -67,12 +72,13 @@ else
|
|
|
flags = {
|
|
|
debounce_text_changes = 150,
|
|
|
},
|
|
|
- on_attach = function(client, bufnr)
|
|
|
+ on_init = function(client)
|
|
|
|
|
|
-
|
|
|
+
|
|
|
client.server_capabilities.documentFormattingProvider = false
|
|
|
client.server_capabilities.documentRangeFormattingProvider = false
|
|
|
-
|
|
|
+ end,
|
|
|
+ on_attach = function(client, bufnr)
|
|
|
on_attach(client, bufnr)
|
|
|
|
|
|
|
|
@@ -120,29 +126,6 @@ if vim.fn.executable("jdtls") == 1 then
|
|
|
});
|
|
|
end
|
|
|
|
|
|
|
|
|
-local group = vim.api.nvim_create_augroup('LspFormatting', { clear = false })
|
|
|
-
|
|
|
-vim.api.nvim_create_autocmd('LspAttach', {
|
|
|
- callback = function(args)
|
|
|
- local bufnr = args.buf
|
|
|
- local client = vim.lsp.get_client_by_id(args.data.client_id)
|
|
|
-
|
|
|
- if client.server_capabilities.documentFormattingProvider then
|
|
|
- for key, cmd in pairs(vim.api.nvim_get_autocmds({ group = group, buffer = bufnr })) do
|
|
|
- vim.api.nvim_del_autocmd(cmd.id)
|
|
|
- end
|
|
|
- vim.api.nvim_create_autocmd('BufWritePre', {
|
|
|
- group = group,
|
|
|
- buffer = bufnr,
|
|
|
- callback = function()
|
|
|
- vim.lsp.buf.format()
|
|
|
- end,
|
|
|
- })
|
|
|
- end
|
|
|
- end,
|
|
|
-})
|
|
|
-
|
|
|
|
|
|
local configs = require('lspconfig.configs')
|
|
|
|