diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-21 18:31:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-21 18:31:03 +0200 |
commit | c7c5f10a36fdeea353e026da28526ff9fb35e367 (patch) | |
tree | d8e177e20e9e334fb1c77eae13d01fe58e67920a /src/ex_cmds.c | |
parent | 258cef59d8c53a5b1c04937c826dc133ad5710e2 (diff) | |
download | vim-git-c7c5f10a36fdeea353e026da28526ff9fb35e367.tar.gz |
patch 8.1.1905: cannot set all properties of the info popupv8.1.1905
Problem: Cannot set all properties of the info popup.
Solution: Add popup_findinfo(). Rename popup_getpreview() to
popup_findpreview().
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r-- | src/ex_cmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c index ee3291c11..dceb1a739 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5154,7 +5154,8 @@ prepare_tagpreview( else if (use_popup) { wp = popup_find_info_window(); - // TODO: set position + if (wp != NULL) + popup_show(wp); } else # endif |