chore: remove redundant comments

This commit is contained in:
2026-05-10 03:18:40 +02:00
parent cf6f78c3f5
commit fe01ec142d
+1 -2
View File
@@ -124,10 +124,9 @@ vim.keymap.set("n", "gr", "<Nop>")
vim.cmd.aunmenu({ "PopUp.-1-" }) vim.cmd.aunmenu({ "PopUp.-1-" })
vim.cmd.aunmenu({ "PopUp.How-to\\ disable\\ mouse" }) vim.cmd.aunmenu({ "PopUp.How-to\\ disable\\ mouse" })
-- Insert-mode Emacs bindings (C-f/C-b live further down inside hover_scroll_map) -- Insert-mode Emacs bindings
vim.keymap.set("i", "<C-a>", "<C-o>^") vim.keymap.set("i", "<C-a>", "<C-o>^")
vim.keymap.set("i", "<C-e>", function() vim.keymap.set("i", "<C-e>", function()
-- Fall through to Vim's default (close popup + revert) during completion.
return vim.fn.pumvisible() ~= 0 and "<C-e>" or "<C-o>$" return vim.fn.pumvisible() ~= 0 and "<C-e>" or "<C-o>$"
end, { expr = true, replace_keycodes = true }) end, { expr = true, replace_keycodes = true })
-- vim.keymap.set('i', '<C-d>', '<C-o>x') -- Overrides de-indent -- vim.keymap.set('i', '<C-d>', '<C-o>x') -- Overrides de-indent