summaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-09-14 09:07:34 +0000
committerBram Moolenaar <Bram@vim.org>2006-09-14 09:07:34 +0000
commitd29a9eefb691be9c885d786d63e30e571d7a08bd (patch)
treee1bbb9ce93407214111649bd855a879afdff0dc3 /src/fileio.c
parenta391707d9fda5645dbc737de22b30185aeb7c7e4 (diff)
updated for version 7.0-104v7.0.104
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 2e2b826ca8..42181e17b2 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -8289,7 +8289,11 @@ trigger_cursorhold()
{
int state;
- if (!did_cursorhold && has_cursorhold() && !Recording)
+ if (!did_cursorhold && has_cursorhold() && !Recording
+#ifdef FEAT_INS_EXPAND
+ && !ins_compl_active()
+#endif
+ )
{
state = get_real_state();
if (state == NORMAL_BUSY || (state & INSERT) != 0)