diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-03-15 06:07:21 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-15 13:07:21 +0000 |
commit | 4662ad5643b270958fa6dc3c0ded15800ce6faf6 (patch) | |
tree | 55e0389266b4ebe7db7924e21ff5c8107f645f4e /src/nvim/options.lua | |
parent | d8eec815609831c51a580ba8d8edada2300aff98 (diff) | |
download | rneovim-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.lua | 2 |
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', |