]> git.madduck.net Git - etc/neovim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

disable tab completion main
authormartin f. krafft <madduck@madduck.net>
Thu, 17 Apr 2025 06:31:34 +0000 (08:31 +0200)
committermartin f. krafft <madduck@madduck.net>
Thu, 17 Apr 2025 06:38:33 +0000 (08:38 +0200)
.config/nvim/keymaps.lua

index c84f835d99737312b0f1e2f8b83b4b2a0eee2d5b..8e751f5ef550acccf197cf42884d68fed1a48aca 100644 (file)
@@ -9,9 +9,9 @@ vim.keymap.set({ "n", "v", "i" }, "<C-k>", "<cmd>lprev<CR>")
 vim.keymap.set({ "n", "v", "i" }, "<C-j>", "<cmd>lnext<CR>")
 
 -- Pop-up menu navigation with tab
-vim.keymap.set("i", "<Tab>", function()
-       return vim.fn.pumvisible() and "<C-n>" or "<Tab>"
-end, { expr = true, remap = false })
-vim.keymap.set("i", "<S-Tab>", function()
-       return vim.fn.pumvisible() and "<C-p>" or "<S-Tab>"
-end, { expr = true, remap = false })
+-- vim.keymap.set("i", "<Tab>", function()
+--     return vim.fn.pumvisible() and "<C-n>" or "<Tab>"
+-- end, { expr = true, remap = false })
+-- vim.keymap.set("i", "<S-Tab>", function()
+--     return vim.fn.pumvisible() and "<C-p>" or "<S-Tab>"
+-- end, { expr = true, remap = false })