From dca7abe79cc4f0933473c3e4bcc75b46cc2c48fd Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 20 Oct 2019 18:17:57 +0200 Subject: 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 #4924) --- src/vim.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/vim.h') 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 -- cgit v1.2.1