2024-01-04 19:43:56 +00:00
|
|
|
local M = {}
|
|
|
|
|
|
|
|
local luasnip = require('luasnip')
|
|
|
|
local types = require('luasnip.util.types')
|
2024-01-05 11:59:51 +00:00
|
|
|
local function_node = require('luasnip').function_node
|
2024-01-04 19:43:56 +00:00
|
|
|
|
2024-01-05 11:59:51 +00:00
|
|
|
M.visual_node = function_node(function(_, snip)
|
|
|
|
local env = snip.env
|
|
|
|
if type(env.LS_SELECT_RAW) ~= 'table' then
|
|
|
|
return env.LS_SELECT_RAW
|
|
|
|
end
|
|
|
|
local res = {}
|
2024-01-04 19:43:56 +00:00
|
|
|
for _, ele in ipairs(env.LS_SELECT_RAW) do
|
|
|
|
table.insert(res, ele)
|
|
|
|
end
|
|
|
|
return res
|
|
|
|
end, {})
|
|
|
|
|
2024-01-05 11:59:51 +00:00
|
|
|
function M.choice_index(choice_node)
|
|
|
|
for i, c in ipairs(choice_node.choices) do
|
|
|
|
if c == choice_node.active_choice then
|
|
|
|
return i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
2024-01-04 19:43:56 +00:00
|
|
|
function M.setup()
|
|
|
|
luasnip.config.setup {
|
|
|
|
region_check_events = 'InsertEnter',
|
|
|
|
delete_check_events = 'InsertLeave',
|
|
|
|
store_selection_keys = '<tab>',
|
|
|
|
ext_opts = {
|
|
|
|
[types.snippet] = {
|
|
|
|
active = {
|
|
|
|
virt_text = { { '●', 'DiagnosticWarn' } },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
[types.choiceNode] = {
|
|
|
|
active = {
|
|
|
|
virt_text = { { '⧨', 'DiagnosticHint' } },
|
|
|
|
-- Include in case one of our choice options is an empty string.
|
|
|
|
hl_group = 'DiagnosticOk',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2024-01-04 23:02:10 +00:00
|
|
|
vim.keymap.set({ 'i', 's' }, '<c-e>', function()
|
|
|
|
if luasnip.choice_active() then
|
|
|
|
return '<Plug>luasnip-next-choice'
|
|
|
|
else
|
|
|
|
return '<c-e>'
|
|
|
|
end
|
|
|
|
end, { silent = true, expr = true, remap = true })
|
|
|
|
|
|
|
|
vim.keymap.set({ 'i', 's' }, '<c-y>', function()
|
|
|
|
if luasnip.choice_active() then
|
|
|
|
return '<Plug>luasnip-prev-choice'
|
|
|
|
else
|
|
|
|
return '<c-y>'
|
|
|
|
end
|
|
|
|
end, { silent = true, expr = true, remap = true })
|
|
|
|
|
2024-01-04 19:43:56 +00:00
|
|
|
-- Allow aborting the active snippet at any point in time.
|
|
|
|
vim.keymap.set(
|
|
|
|
{ 'n', 'i', 's' },
|
|
|
|
'<c-l>',
|
|
|
|
'<cmd>LuaSnipUnlinkCurrent<cr>'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
return M
|