summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-10-20 18:17:57 +0200
committerBram Moolenaar <Bram@vim.org>2019-10-20 18:17:57 +0200
commitdca7abe79cc4f0933473c3e4bcc75b46cc2c48fd (patch)
tree577964fff695a536bc2d957889e74a2f9f087290 /src/vim.h
parent88d3d09e07dbe0e3ea450bc554e2aadc451450d2 (diff)
downloadvim-git-8.1.2192.tar.gz
patch 8.1.2192: cannot easily fill the info popup asynchronouslyv8.1.2192
Problem: Cannot easily fill the info popup asynchronously. Solution: Add the "popuphidden" value to 'completeopt'. (closes #4924)
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index e92352c65..43eecf090 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2112,6 +2112,13 @@ typedef enum {
FLUSH_INPUT // flush typebuf and inchar() input
} flush_buffers_T;
+// Argument for prepare_tagpreview()
+typedef enum {
+ USEPOPUP_NONE,
+ USEPOPUP_NORMAL, // use info popup
+ USEPOPUP_HIDDEN // use info popup initially hidden
+} use_popup_T;
+
#include "ex_cmds.h" // Ex command defines
#include "spell.h" // spell checking stuff