From 4662ad5643b270958fa6dc3c0ded15800ce6faf6 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 15 Mar 2025 06:07:21 -0700 Subject: feat(defaults): completeopt=popup #32909 Assuming that completeopt=popup does what its documentation claims, it is more appropriate that completeopt=preview as a default. --- runtime/lua/vim/_meta/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua/vim') diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index 59e65b0585..775dda59f7 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -1109,7 +1109,7 @@ vim.go.cia = vim.go.completeitemalign --- combination with "menu" or "menuone". --- --- @type string -vim.o.completeopt = "menu,preview" +vim.o.completeopt = "menu,popup" vim.o.cot = vim.o.completeopt vim.bo.completeopt = vim.o.completeopt vim.bo.cot = vim.bo.completeopt -- cgit