summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ftplugin/python.lua2
-rw-r--r--lua/lv-galaxyline/init.lua31
2 files changed, 31 insertions, 2 deletions
diff --git a/ftplugin/python.lua b/ftplugin/python.lua
index 7ae0d6fd..23e54880 100644
--- a/ftplugin/python.lua
+++ b/ftplugin/python.lua
@@ -26,7 +26,7 @@ require"lspconfig".efm.setup {
-- init_options = {initializationOptions},
cmd = {DATA_PATH .. "/lspinstall/efm/efm-langserver"},
init_options = {documentFormatting = true, codeAction = false},
- filetypes = {"lua", "python", "javascriptreact", "javascript", "typescript","typescriptreact","sh", "html", "css", "yaml", "markdown", "vue"},
+ filetypes = {"python"},
settings = {
rootMarkers = {".git/", "requirements.txt"},
languages = {
diff --git a/lua/lv-galaxyline/init.lua b/lua/lv-galaxyline/init.lua
index a7821932..6da044c8 100644
--- a/lua/lv-galaxyline/init.lua
+++ b/lua/lv-galaxyline/init.lua
@@ -178,9 +178,38 @@ table.insert(gls.right, {
}
})
+local get_lsp_client = function (msg)
+ msg = msg or "No Active LSP Client"
+ local buf_ft = vim.api.nvim_buf_get_option(0, 'filetype')
+ local clients = vim.lsp.get_active_clients()
+ if next(clients) == nil then
+ return msg
+ end
+ local lsps = ""
+ for _,client in ipairs(clients) do
+ local filetypes = client.config.filetypes
+ if filetypes and vim.fn.index(filetypes, buf_ft) ~=1 then
+ print(client.name)
+ if lsps == "" then
+ print("first", lsps)
+ lsps = client.name
+ else
+ lsps = lsps .. ", " .. client.name
+ print("more", lsps)
+ end
+ end
+ end
+ if lsps == "" then
+ return msg
+ else
+ return lsps
+ end
+end
+
+
table.insert(gls.right, {
ShowLspClient = {
- provider = 'GetLspClient',
+ provider = get_lsp_client,
condition = function()
local tbl = {['dashboard'] = true, [' '] = true}
if tbl[vim.bo.filetype] then return false end