aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-03-15 06:07:21 -0700
committerGitHub <noreply@github.com>2025-03-15 13:07:21 +0000
commit4662ad5643b270958fa6dc3c0ded15800ce6faf6 (patch)
tree55e0389266b4ebe7db7924e21ff5c8107f645f4e /src/nvim/options.lua
parentd8eec815609831c51a580ba8d8edada2300aff98 (diff)
downloadrneovim-4662ad5643b270958fa6dc3c0ded15800ce6faf6.tar.gz
rneovim-4662ad5643b270958fa6dc3c0ded15800ce6faf6.tar.bz2
rneovim-4662ad5643b270958fa6dc3c0ded15800ce6faf6.zip
feat(defaults): completeopt=popup #32909
Assuming that completeopt=popup does what its documentation claims, it is more appropriate that completeopt=preview as a default.
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua2
1 files changed, 1 insertions, 1 deletions
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',