nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 6e7960ba94fa890352337ecce2c71e27f0208fe2
parent f1a9bd3c89b16749757a917c1771d877b1901555
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Fri, 16 May 2008 11:51:39 +1200

convert tabs to spaces

not sure how those tabs got in there!

Diffstat:
Mplugin/NERD_tree.vim | 24++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -1337,7 +1337,7 @@ function! s:InitNerdTree(dir)
     let dir = a:dir == '' ? expand('%:p:h') : a:dir
     let dir = resolve(dir)
 
-    let path = s:oPath.New(dir)
+    let path = s:oPath.New(dir)
 
     if !path.isDirectory
         call s:EchoWarning("Error reading: " . dir)
@@ -1998,7 +1998,7 @@ function! s:OpenNodeSplit(treenode)
     try
         exec("silent " . splitMode." sp " . a:treenode.path.StrForEditCmd())
     catch /^Vim\%((\a\+)\)\=:E37/
-        call s:PutCursorInTreeWin()
+        call s:PutCursorInTreeWin()
         throw "NERDTree.view.FileOpen exception: ". a:treenode.path.Str(0) ." is already open and modified."
     catch /^Vim\%((\a\+)\)\=:/
         do nothing 
@@ -2052,11 +2052,11 @@ endfunction
 "FUNCTION: s:PutCursorInTreeWin(){{{2
 "Places the cursor in the nerd tree window
 function! s:PutCursorInTreeWin() 
-    if !s:IsTreeOpen()
-        throw "NERDTree.view.InvalidOperation Exception: No NERD tree window exists"
-    endif
+    if !s:IsTreeOpen()
+        throw "NERDTree.view.InvalidOperation Exception: No NERD tree window exists"
+    endif
 
-    exec s:GetTreeWinNum() . "wincmd w"
+    exec s:GetTreeWinNum() . "wincmd w"
 endfunction
 
 "FUNCTION: s:RenderView {{{2 
@@ -2862,13 +2862,13 @@ function! s:ShowFileSystemMenu()
        \ " (a)dd a childnode\n".
        \ " (m)ove the current node\n".
        \ " (d)elete the current node\n"
-    if s:oPath.CopyingSupported() 
-        let prompt = prompt . " (c)opy the current node\n\n"
-    else
-        let prompt = prompt . " \n"
-    endif
+    if s:oPath.CopyingSupported()
+        let prompt = prompt . " (c)opy the current node\n\n"
+    else
+        let prompt = prompt . " \n"
+    endif
 
-    echo prompt
+    echo prompt
 
     let choice = nr2char(getchar())