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 /runtime | |
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 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 2 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 1 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index e42fb4f9e4..7aca0268c6 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1528,7 +1528,7 @@ A jump table for the options with a short description can be found at |Q_op|. order. *'completeopt'* *'cot'* -'completeopt' 'cot' string (default "menu,preview") +'completeopt' 'cot' string (default "menu,popup") global or local to buffer |global-local| A comma-separated list of options for Insert mode completion |ins-completion|. The supported values are: diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 9bd23313e3..df79d25198 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -46,6 +46,7 @@ Defaults *defaults* *nvim-defaults* - 'commentstring' defaults to "" - 'compatible' is always disabled - 'complete' excludes "i" +- 'completeopt' defaults to "menu,popup" - 'define' defaults to "". The C ftplugin sets it to "^\\s*#\\s*define" - 'diffopt' defaults to "internal,filler,closeoff,linematch:40" - 'directory' defaults to ~/.local/state/nvim/swap// (|xdg|), auto-created 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 |