comparison runtime/doc/options.txt @ 18396:ba5d8c5d77d7 v8.1.2192

patch 8.1.2192: cannot easily fill the info popup asynchronously Commit: https://github.com/vim/vim/commit/dca7abe79cc4f0933473c3e4bcc75b46cc2c48fd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 20 18:17:57 2019 +0200 patch 8.1.2192: cannot easily fill the info popup asynchronously Problem: Cannot easily fill the info popup asynchronously. Solution: Add the "popuphidden" value to 'completeopt'. (closes https://github.com/vim/vim/issues/4924)
author Bram Moolenaar <Bram@vim.org>
date Sun, 20 Oct 2019 18:30:04 +0200
parents 11394af51615
children 6d11fc4aa683
comparison
equal deleted inserted replaced
18395:dbfbbb32cf07 18396:ba5d8c5d77d7
1 *options.txt* For Vim version 8.1. Last change: 2019 Sep 28 1 *options.txt* For Vim version 8.1. Last change: 2019 Oct 20
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1915 1915
1916 popup Show extra information about the currently selected 1916 popup Show extra information about the currently selected
1917 completion in a popup window. Only works in combination 1917 completion in a popup window. Only works in combination
1918 with "menu" or "menuone". Overrides "preview". 1918 with "menu" or "menuone". Overrides "preview".
1919 See |'completepopup'| for specifying properties. 1919 See |'completepopup'| for specifying properties.
1920 {only works when compiled with the |+textprop| feature}
1921
1922 popuphidden
1923 Just like "popup" but initially hide the popup. Use a
1924 |CompleteChanged| autocommand to fetch the info and call
1925 |popup_show()| once the popup has been filled.
1926 See the example at |complete-popuphidden|.
1920 {only works when compiled with the |+textprop| feature} 1927 {only works when compiled with the |+textprop| feature}
1921 1928
1922 noinsert Do not insert any text for a match until the user selects 1929 noinsert Do not insert any text for a match until the user selects
1923 a match from the menu. Only works in combination with 1930 a match from the menu. Only works in combination with
1924 "menu" or "menuone". No effect if "longest" is present. 1931 "menu" or "menuone". No effect if "longest" is present.