diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-12-16 12:41:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 12:41:05 +0100 |
commit | 5ed55ff14c8b7e346811cb6228bf63fb5106bae9 (patch) | |
tree | d27158d56da5810b942a3d561ae15b2711b2a7cd /src/nvim/options.lua | |
parent | 7e7da962de404e3a0952bcc0adc6fbe53eda3cfb (diff) | |
parent | e38027ef69f75653ee953b16ebf4a8652a3fb748 (diff) | |
download | rneovim-5ed55ff14c8b7e346811cb6228bf63fb5106bae9.tar.gz rneovim-5ed55ff14c8b7e346811cb6228bf63fb5106bae9.tar.bz2 rneovim-5ed55ff14c8b7e346811cb6228bf63fb5106bae9.zip |
Merge pull request #24723 from glepnir/popup
feat(complete): completeopt support popup like vim
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index edd7423e69..2621cc2eb1 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1450,6 +1450,10 @@ return { noselect Do not select a match in the menu, force the user to select one from the menu. Only works in combination with "menu" or "menuone". + + popup Show extra information about the currently selected + completion in a popup window. Only works in combination + with "menu" or "menuone". Overrides "preview". ]=], expand_cb = 'expand_set_completeopt', full_name = 'completeopt', |