From e5c79fc5c10a8ea7d5d66676ae5cce877e0e3ca3 Mon Sep 17 00:00:00 2001 From: marty Date: Fri, 11 Sep 2009 22:32:09 +1200 Subject: [PATCH] dont highlight current menu item this is mainly because users shouldnt be encouraged to use j/k, but rather they should use the shortcuts... this is faster and stops the menu from being re-rendered so often (which looks shithouse since he screen is being ":redraw!"n) --- plugin/NERD_tree.vim | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim index 56d371d..85bb4cf 100644 --- a/plugin/NERD_tree.vim +++ b/plugin/NERD_tree.vim @@ -511,9 +511,7 @@ function! s:MenuController._echoPrompt() for i in range(0, len(self.menuItems)-1) if self.selection == i - echohl todo echo "> " . self.menuItems[i].text - echohl normal else echo " " . self.menuItems[i].text endif