* WIP * WIP * Fix #226 * Insert text * Emulate vim native * テキトウ * Tekito * Move scrollbar impl * aaa * Ignore unexpected event * fix * fix scroll * Refactor (conflict...) * Fix bug * Positive integer * Refactor a bit * Fix for pumheight=0 * fx * Improve matching highlight * Improve colorscheme handling * fmt * Add cmp.visible * Fix pum pos * ABBR_MARGIN * Fix cel calculation * up * refactor * fix * a * a * compat * Remove current completion state * Fix ghost text * Add feature toggle * highlight customization * Update * Add breaking change announcement * Add README.md * Remove unused function * extmark ephemeral ghost text * Support native comp * Fix docs pos * a * Remove if native menu visible * theme async * Improvement idea: option to disables insert on select item (#240) * use ghost text instead of insertion on prev/next item * add disables_insert_on_selection option * move disable_insert_on_select option as argumet on * update README * use an enum behavior to disable insert on select * Adopt contribution * Preselect * Improve * Change configuration option * a * Improve * Improve * Implement proper <C-e> behavior to native/custom * Support <C-c> maybe * Improve docs view * Improve * Avoid syntax leak * TODO: refactor * Fix * Revert win pos * fmt * ghost text remaining * Don't use italic by default * bottom * dedup by label * Ignore events * up * Hacky native view partial support * up * perf * improve * more cache * fmt * Fix format option * fmt * recheck * Fix * Improve * Improve * compat * implement redraw * improve * up * fmt/lint * immediate ghost text * source timeout * up * Support multibyte * disable highlight * up * improve * fmt * fmt * fix * fix * up * up * Use screenpos * Add undojoin check * Fix height * matcher bug * Fix dot-repeat * Remove undojoin * macro * Support dot-repeat * MacroSafe * Default item count is 200 * fmt Co-authored-by: Eric Puentes <eric.puentes@mercadolibre.com.co>
108 lines
2.8 KiB
Lua
108 lines
2.8 KiB
Lua
local compare = require('cmp.config.compare')
|
|
local mapping = require('cmp.config.mapping')
|
|
local types = require('cmp.types')
|
|
|
|
local WIDE_HEIGHT = 40
|
|
|
|
---@return cmp.ConfigSchema
|
|
return function()
|
|
return {
|
|
enabled = function()
|
|
return vim.api.nvim_buf_get_option(0, 'buftype') ~= 'prompt'
|
|
end,
|
|
completion = {
|
|
autocomplete = {
|
|
types.cmp.TriggerEvent.TextChanged,
|
|
},
|
|
completeopt = 'menu,menuone,noselect',
|
|
keyword_pattern = [[\%(-\?\d\+\%(\.\d\+\)\?\|\h\w*\%(-\w*\)*\)]],
|
|
keyword_length = 1,
|
|
get_trigger_characters = function(trigger_characters)
|
|
return trigger_characters
|
|
end,
|
|
},
|
|
|
|
snippet = {
|
|
expand = function()
|
|
error('snippet engine is not configured.')
|
|
end,
|
|
},
|
|
|
|
preselect = types.cmp.PreselectMode.Item,
|
|
|
|
documentation = {
|
|
border = { '', '', '', ' ', '', '', '', ' ' },
|
|
winhighlight = 'NormalFloat:NormalFloat,FloatBorder:NormalFloat',
|
|
maxwidth = math.floor((WIDE_HEIGHT * 2) * (vim.o.columns / (WIDE_HEIGHT * 2 * 16 / 9))),
|
|
maxheight = math.floor(WIDE_HEIGHT * (WIDE_HEIGHT / vim.o.lines)),
|
|
},
|
|
|
|
confirmation = {
|
|
default_behavior = types.cmp.ConfirmBehavior.Insert,
|
|
get_commit_characters = function(commit_characters)
|
|
return commit_characters
|
|
end,
|
|
},
|
|
|
|
sorting = {
|
|
priority_weight = 2,
|
|
comparators = {
|
|
function(e1, e2)
|
|
local diff
|
|
diff = compare.offset(e1, e2)
|
|
if diff ~= nil then
|
|
return diff
|
|
end
|
|
diff = compare.exact(e1, e2)
|
|
if diff ~= nil then
|
|
return diff
|
|
end
|
|
diff = compare.score(e1, e2)
|
|
if diff ~= nil then
|
|
return diff
|
|
end
|
|
diff = compare.kind(e1, e2)
|
|
if diff ~= nil then
|
|
return diff
|
|
end
|
|
diff = compare.sort_text(e1, e2)
|
|
if diff ~= nil then
|
|
return diff
|
|
end
|
|
diff = compare.length(e1, e2)
|
|
if diff ~= nil then
|
|
return diff
|
|
end
|
|
return compare.order(e1, e2)
|
|
end,
|
|
},
|
|
},
|
|
|
|
event = {},
|
|
|
|
mapping = {
|
|
['<Down>'] = mapping.select_next_item({ behavior = types.cmp.SelectBehavior.Select }),
|
|
['<Up>'] = mapping.select_prev_item({ behavior = types.cmp.SelectBehavior.Select }),
|
|
['<C-n>'] = mapping.select_next_item({ behavior = types.cmp.SelectBehavior.Insert }),
|
|
['<C-p>'] = mapping.select_prev_item({ behavior = types.cmp.SelectBehavior.Insert }),
|
|
['<C-c>'] = function(fallback)
|
|
require('cmp').close()
|
|
fallback()
|
|
end,
|
|
},
|
|
|
|
formatting = {
|
|
format = function(_, vim_item)
|
|
return vim_item
|
|
end,
|
|
},
|
|
|
|
experimental = {
|
|
native_menu = false,
|
|
ghost_text = false,
|
|
},
|
|
|
|
sources = {},
|
|
}
|
|
end
|