comparison src/vim.h @ 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 368d6a478ae5
children 507348b211b4
comparison
equal deleted inserted replaced
18395:dbfbbb32cf07 18396:ba5d8c5d77d7
2110 FLUSH_MINIMAL, 2110 FLUSH_MINIMAL,
2111 FLUSH_TYPEAHEAD, // flush current typebuf contents 2111 FLUSH_TYPEAHEAD, // flush current typebuf contents
2112 FLUSH_INPUT // flush typebuf and inchar() input 2112 FLUSH_INPUT // flush typebuf and inchar() input
2113 } flush_buffers_T; 2113 } flush_buffers_T;
2114 2114
2115 // Argument for prepare_tagpreview()
2116 typedef enum {
2117 USEPOPUP_NONE,
2118 USEPOPUP_NORMAL, // use info popup
2119 USEPOPUP_HIDDEN // use info popup initially hidden
2120 } use_popup_T;
2121
2115 #include "ex_cmds.h" // Ex command defines 2122 #include "ex_cmds.h" // Ex command defines
2116 #include "spell.h" // spell checking stuff 2123 #include "spell.h" // spell checking stuff
2117 2124
2118 #include "proto.h" // function prototypes 2125 #include "proto.h" // function prototypes
2119 2126