This commit is contained in:
2025-12-09 10:35:51 +00:00
parent 0cce7837f2
commit 9bd219f053
5 changed files with 103 additions and 48 deletions

View File

@@ -46,14 +46,12 @@ vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper win
vim.keymap.set({ 'i' }, '<C-J>', function()
local ls = require 'luasnip'
print('jj')
if ls.choice_active() then
ls.change_choice(1)
end
end, { silent = true })
vim.keymap.set({ 'i' }, '<C-k>', function()
local ls = require 'luasnip'
print('kk')
if ls.choice_active() then
ls.change_choice(-1)
end