From 2d687154968e7a12345fe6167b538cd8488114cb Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Wed, 14 Apr 2021 01:34:10 -0700 Subject: LspStart: make start all matching clients by default --- lua/lspconfig.lua | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'lua/lspconfig.lua') diff --git a/lua/lspconfig.lua b/lua/lspconfig.lua index ba8660ec..a901a1a2 100644 --- a/lua/lspconfig.lua +++ b/lua/lspconfig.lua @@ -24,9 +24,22 @@ function M._root._setup() }; LspStart = { function(server_name) - require('lspconfig')[server_name].autostart() + if server_name then + require('lspconfig')[server_name].autostart() + else + local buffer_filetype = vim.bo.filetype + for client_name, config in pairs(configs) do + if config.filetypes then + for _, filetype_match in ipairs(config.filetypes) do + if buffer_filetype == filetype_match then + require('lspconfig')[client_name].autostart() + end + end + end + end + end end; - "-nargs=1 -complete=custom,v:lua.lsp_complete_configured_servers"; + "-nargs=? -complete=custom,v:lua.lsp_complete_configured_servers"; description = '`:LspStart` Manually launches a language server.'; }; LspStop = { -- cgit v1.2.3-70-g09d2