summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-01 17:13:36 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-01 17:13:36 +0200
commitbf0eff0b724ebf4951f7ca82e6c648451f9f0c01 (patch)
tree3be6478692b535abb96b8fe3963137e15581b206 /src/getchar.c
parent2d247849ce612050ba1085df806746b23be1f0a3 (diff)
patch 8.1.1441: popup window filter not yet implementedv8.1.1441
Problem: Popup window filter not yet implemented. Solution: Implement the popup filter.
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 02535ce201..80e98ec60e 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -1801,6 +1801,10 @@ vgetc(void)
ui_remove_balloon();
}
#endif
+#ifdef FEAT_TEXT_PROP
+ if (popup_do_filter(c))
+ c = K_IGNORE;
+#endif
return c;
}