diff options
author | rebuilt <[email protected]> | 2022-07-31 05:33:55 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-07-31 14:33:55 +0200 |
commit | caac70d22e98427cd32810acb21476011c374ba3 (patch) | |
tree | 16fbf423a6e9ea25f6854e40ae0ef8bd05f68472 /lua/lvim/core | |
parent | dec21bbab6cf9102e236806e20273d08f32f8716 (diff) |
perf(cmp): remove redundant check for emmet-ls (#2830)
Diffstat (limited to 'lua/lvim/core')
-rw-r--r-- | lua/lvim/core/cmp.lua | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/lua/lvim/core/cmp.lua b/lua/lvim/core/cmp.lua index baf6279b..942a72f6 100644 --- a/lua/lvim/core/cmp.lua +++ b/lua/lvim/core/cmp.lua @@ -22,20 +22,6 @@ local function feedkeys(key, mode) end M.methods.feedkeys = feedkeys ----checks if emmet_ls is available and active in the buffer ----@return boolean true if available, false otherwise -local is_emmet_active = function() - local clients = vim.lsp.buf_get_clients() - - for _, client in pairs(clients) do - if client.name == "emmet_ls" then - return true - end - end - return false -end -M.methods.is_emmet_active = is_emmet_active - ---when inside a snippet, seeks to the nearest luasnip field if possible, and checks if it is jumpable ---@param dir number 1 for forward, -1 for backward; defaults to 1 ---@return boolean true if a jumpable luasnip field is found while inside a snippet @@ -257,7 +243,6 @@ M.config = function() ["<C-j>"] = cmp.mapping.select_next_item(), ["<C-d>"] = cmp.mapping.scroll_docs(-4), ["<C-f>"] = cmp.mapping.scroll_docs(4), - -- TODO: potentially fix emmet nonsense ["<Tab>"] = cmp.mapping(function(fallback) if cmp.visible() then cmp.select_next_item() @@ -267,8 +252,6 @@ M.config = function() luasnip.jump(1) elseif check_backspace() then fallback() - elseif is_emmet_active() then - return vim.fn["cmp#complete"]() else fallback() end |