From 641e8bae4e687f0aa47ecf0acc3fc504a4b067ff Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Sat, 10 Aug 2024 02:26:53 +0100 Subject: [PATCH] Remove `cmdline` completion Let's see if this fixes some intermittent issues when trying to tab complete in command mode. --- plugin/completion.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/plugin/completion.lua b/plugin/completion.lua index 3ecff97..e0abadc 100644 --- a/plugin/completion.lua +++ b/plugin/completion.lua @@ -67,13 +67,6 @@ cmp.setup { }, } -cmp.setup.cmdline({ "/", "?" }, { - mapping = cmp.mapping.preset.cmdline(), - sources = { - { name = "buffer" }, - }, -}) - cmp.setup.filetype({ "mysql", "sql" }, { sources = { { name = "vim-dadbod-completion" },