|
|
@ -1,5 +1,12 @@ |
|
|
|
local has_words_before = function() |
|
|
|
unpack = unpack or table.unpack |
|
|
|
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 |
|
|
|
|
|
|
|
return function() |
|
|
|
local cmp = require'cmp' |
|
|
|
local snippy = require("snippy") |
|
|
|
local lspkind = require('lspkind') |
|
|
|
|
|
|
|
cmp.setup({ |
|
|
@ -17,18 +24,38 @@ return function() |
|
|
|
['<C-f>'] = cmp.mapping.scroll_docs(4), |
|
|
|
['<C-Space>'] = cmp.mapping.complete(), |
|
|
|
['<C-e>'] = cmp.mapping.abort(), |
|
|
|
["<Tab>"] = cmp.mapping(function(fallback) |
|
|
|
if cmp.visible() then |
|
|
|
local entry = cmp.get_selected_entry() |
|
|
|
if not entry then |
|
|
|
cmp.select_next_item({ behavior = cmp.SelectBehavior.Select }) |
|
|
|
["<CR>"] = cmp.mapping({ |
|
|
|
i = function(fallback) |
|
|
|
if cmp.visible() and cmp.get_active_entry() then |
|
|
|
cmp.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false }) |
|
|
|
else |
|
|
|
cmp.confirm() |
|
|
|
fallback() |
|
|
|
end |
|
|
|
else |
|
|
|
fallback() |
|
|
|
end |
|
|
|
end, {"i","s","c",}), |
|
|
|
end, |
|
|
|
s = cmp.mapping.confirm({ select = false }), |
|
|
|
c = cmp.mapping.confirm({ behavior = cmp.ConfirmBehavior.Replace, select = false }), |
|
|
|
}), |
|
|
|
["<Tab>"] = cmp.mapping(function(fallback) |
|
|
|
if cmp.visible() then |
|
|
|
cmp.select_next_item() |
|
|
|
elseif snippy.can_expand_or_advance() then |
|
|
|
snippy.expand_or_advance() |
|
|
|
elseif has_words_before() then |
|
|
|
cmp.complete() |
|
|
|
else |
|
|
|
fallback() |
|
|
|
end |
|
|
|
end, { "i", "s" }), |
|
|
|
|
|
|
|
["<S-Tab>"] = cmp.mapping(function(fallback) |
|
|
|
if cmp.visible() then |
|
|
|
cmp.select_prev_item() |
|
|
|
elseif snippy.can_jump(-1) then |
|
|
|
snippy.previous() |
|
|
|
else |
|
|
|
fallback() |
|
|
|
end |
|
|
|
end, { "i", "s" }), |
|
|
|
}), |
|
|
|
sources = cmp.config.sources({ |
|
|
|
{ name = "copilot" }, |
|
|
|