From 75f152d09b984864732d7b110c76f9a1214b085c Mon Sep 17 00:00:00 2001 From: Hinidu Date: Sat, 12 Apr 2014 00:12:05 +0300 Subject: Remove FEAT_MENU Support for :menu command. It can be used in terminal Vim too. --- src/nvim/ui.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/nvim/ui.c') diff --git a/src/nvim/ui.c b/src/nvim/ui.c index e00ee8b8d0..256d35f089 100644 --- a/src/nvim/ui.c +++ b/src/nvim/ui.c @@ -329,8 +329,7 @@ void add_to_input_buf(char_u *s, int len) || defined(FEAT_GUI_MSWIN) \ || defined(FEAT_GUI_MAC) \ || defined(FEAT_MBYTE_IME) \ - || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \ - || defined(FEAT_MENU))) \ + || defined(FEAT_GUI) \ || defined(PROTO) /* * Add "str[len]" to the input buffer while escaping CSI bytes. -- cgit