nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 73be034d5ed3ce0ee2230def7c1f389147a64c2a
parent b5d6736f7623d03c9f96ec271f0950626990558b
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Sat, 28 Jun 2008 22:20:42 +1200

remove some random unneeded colons

Diffstat:
Mplugin/NERD_tree.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -2328,7 +2328,7 @@ function! s:RenderView()
     let topLine = line("w0")
 
     "delete all lines in the buffer (being careful not to clobber a register)
-    :silent 1,$delete _
+    silent 1,$delete _
 
     call s:DumpHelp()
 
@@ -2352,7 +2352,7 @@ function! s:RenderView()
     call s:DrawTree(t:NERDTreeRoot, 0, 0, [], t:NERDTreeRoot.GetChildCount() == 1)
 
     "delete the blank line at the top of the buffer
-    :silent 1,1delete _
+    silent 1,1delete _
 
     "restore the view
     let old_scrolloff=&scrolloff