1
0
Fork 0

clean up autocompletion

This commit is contained in:
Luca Bilke 2023-01-26 17:08:48 +01:00
parent 3ac2bd4110
commit cc163de79d

View file

@ -3,22 +3,15 @@ if not cmp_status_ok then
return return
end end
local function border(hl_name) local luasnip_status_ok, luasnip = pcall(require, 'luasnip')
return { if not luasnip_status_ok then
{ "", hl_name }, return
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
{ "", hl_name },
}
end end
local check_backspace = function() local has_words_before = function()
local col = vim.fn.col(".") - 1 unpack = unpack or table.unpack
return col == 0 or vim.fn.getline("."):sub(col, col):match("%s") local line, col = unpack(vim.api.nvim_win_get_cursor(0))
return col ~= 0 and vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(col, col):match("%s") == nil
end end
local cmp_window = require "cmp.utils.window" local cmp_window = require "cmp.utils.window"
@ -33,23 +26,25 @@ end
cmp.setup({ cmp.setup({
window = { window = {
completion = { completion = {
border = border "CmpBorder", winhighlight = "Normal:Pmenu,FloatBorder:Pmenu,Search:None",
winhighlight = "Normal:CmpPmenu,CursorLine:PmenuSel,Search:None", col_offset = -3,
}, side_padding = 0,
documentation = {
border = border "CmpDocBorder",
}, },
}, },
formatting = {
fields = { "kind", "abbr", "menu" },
format = function(entry, vim_item)
local kind = require("lspkind").cmp_format({ mode = "symbol_text", maxwidth = 50 })(entry, vim_item)
local strings = vim.split(kind.kind, "%s", { trimempty = true })
kind.kind = " " .. (strings[1] or "") .. " "
kind.menu = " (" .. (strings[2] or "") .. ")"
return kind
end,
},
snippet = { snippet = {
expand = function(args) expand = function(args)
require("luasnip").lsp_expand(args.body) luasnip.lsp_expand(args.body)
end,
},
formatting = {
format = function(_, vim_item)
local icons = require('config.iconlist').kind
vim_item.kind = string.format("%s %s", icons[vim_item.kind], vim_item.kind)
return vim_item
end, end,
}, },
mapping = { mapping = {
@ -62,35 +57,29 @@ cmp.setup({
i = cmp.mapping.abort(), i = cmp.mapping.abort(),
c = cmp.mapping.close(), c = cmp.mapping.close(),
}), }),
["<CR>"] = cmp.mapping.confirm({ select = true }),
["<Tab>"] = cmp.mapping(function(fallback) ["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then if cmp.visible() then
cmp.select_next_item() cmp.select_next_item()
elseif require('luasnip').expandable() then -- You could replace the expand_or_jumpable() calls with expand_or_locally_jumpable()
require('luasnip').expand() -- they way you will only jump inside the snippet region
elseif require('luasnip').expand_or_jumpable() then elseif luasnip.expand_or_jumpable() then
require('luasnip').expand_or_jump() luasnip.expand_or_jump()
elseif check_backspace() then elseif has_words_before() then
fallback() cmp.complete()
else else
fallback() fallback()
end end
end, { end, { "i", "s" }),
"i",
"s",
}),
["<S-Tab>"] = cmp.mapping(function(fallback) ["<S-Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then if cmp.visible() then
cmp.select_prev_item() cmp.select_prev_item()
elseif require('luasnip').jumpable(-1) then elseif luasnip.jumpable(-1) then
require('luasnip').jump(-1) luasnip.jump(-1)
else else
fallback() fallback()
end end
end, { end, { "i", "s" }),
"i",
"s",
}),
}, },
sources = { sources = {
{ name = "nvim_lsp" }, { name = "nvim_lsp" },