diff options
author | kylo252 <[email protected]> | 2021-08-06 13:54:25 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-06 13:54:25 +0200 |
commit | c8d1b957121956e36e193d1e7104423aa5901d9b (patch) | |
tree | 625ddf603d8b0474b9a94d68c69a4f0f84f1429f /lua/core | |
parent | ca750d8ff4b99def210d6c5d98078a77aa1970aa (diff) | |
parent | 990bb622e0a7f90881a6016570c6f205499b1c0d (diff) |
Merge pull request #1250 from kylo252/fixup
chore: remove now-redundant utility function
Diffstat (limited to 'lua/core')
-rw-r--r-- | lua/core/galaxyline.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/core/galaxyline.lua b/lua/core/galaxyline.lua index b2325b19..d3f9342b 100644 --- a/lua/core/galaxyline.lua +++ b/lua/core/galaxyline.lua @@ -203,7 +203,6 @@ table.insert(gls.right, { local function get_attached_provider_name(msg) msg = msg or "LSP Inactive" local buf_clients = vim.lsp.buf_get_clients() - local utils = require "utils" if next(buf_clients) == nil then return msg end @@ -215,7 +214,7 @@ local function get_attached_provider_name(msg) table.insert(buf_client_names, client.name) end end - utils.list_extend_unique(buf_client_names, null_ls_providers) + vim.list_extend(buf_client_names, null_ls_providers) return table.concat(buf_client_names, ", ") end |