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. --- src/nvim/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 49de8b92ef..e9f8051ed3 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1483,7 +1483,7 @@ local options = { { abbreviation = 'cot', cb = 'did_set_completeopt', - defaults = 'menu,preview', + defaults = 'menu,popup', values = { 'menu', 'menuone', -- cgit