From: martin f. krafft Date: Thu, 17 Apr 2025 06:31:34 +0000 (+0200) Subject: disable tab completion X-Git-Url: https://git.madduck.net/etc/neovim.git/commitdiff_plain/025267a5ecca0366bcc03876460a14133c29c32d disable tab completion --- diff --git a/.config/nvim/keymaps.lua b/.config/nvim/keymaps.lua index c84f835..8e751f5 100644 --- a/.config/nvim/keymaps.lua +++ b/.config/nvim/keymaps.lua @@ -9,9 +9,9 @@ vim.keymap.set({ "n", "v", "i" }, "", "lprev") vim.keymap.set({ "n", "v", "i" }, "", "lnext") -- Pop-up menu navigation with tab -vim.keymap.set("i", "", function() - return vim.fn.pumvisible() and "" or "" -end, { expr = true, remap = false }) -vim.keymap.set("i", "", function() - return vim.fn.pumvisible() and "" or "" -end, { expr = true, remap = false }) +-- vim.keymap.set("i", "", function() +-- return vim.fn.pumvisible() and "" or "" +-- end, { expr = true, remap = false }) +-- vim.keymap.set("i", "", function() +-- return vim.fn.pumvisible() and "" or "" +-- end, { expr = true, remap = false })