commit e5c79fc5c10a8ea7d5d66676ae5cce877e0e3ca3
parent a3b05e8e38cd70151cba626b29eb92abe45617a3
Author: marty <martin_grenfell@msn.com>
Date: Fri, 11 Sep 2009 22:32:09 +1200
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)
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git 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