From 274fc85cdb910f47c9b17ff2cb035498632b93d2 Mon Sep 17 00:00:00 2001 From: Jacob Niehus Date: Thu, 17 Jul 2014 21:18:07 -0700 Subject: [PATCH] Fix ctags freeze on lusty-juggler.vim --- plugin/lusty-juggler.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/lusty-juggler.vim b/plugin/lusty-juggler.vim index c84a13f..a639650 100644 --- a/plugin/lusty-juggler.vim +++ b/plugin/lusty-juggler.vim @@ -374,15 +374,15 @@ module VIM return if rest.length == 0 return if rest.length % 2 != 0 - command "redraw" # see :help echo-redraw + VIM::command "redraw" # see :help echo-redraw i = 0 while i < rest.length do - command "echohl #{rest[i]}" - command "echon '#{rest[i+1]}'" + VIM::command "echohl #{rest[i]}" + VIM::command "echon '#{rest[i+1]}'" i += 2 end - command 'echohl None' + VIM::command 'echohl None' end end