nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 06db1cdf2c1047d2adce82acbf91b19d3c7b2039
parent 0eaaf6842cb22907e20bb47a8ae6fdeb608a9e78
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Sat, 10 May 2008 16:27:50 +1200

fix some formatting

Diffstat:
Mplugin/NERD_tree.vim | 4----
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -319,7 +319,6 @@ function! s:oTreeFileNode.Rename(newName) dict
         call newParent.CreateChild(self.path, 1)
     endif
 endfunction
-
 "FUNCTION: oTreeFileNode.StrDisplay() {{{3 
 "
 "Returns a string that specifies how the node should be represented as a
@@ -984,8 +983,6 @@ function! s:oPath.GetParent() dict
     let path = '/'. join(self.pathSegments[0:-2], '/')
     return s:oPath.New(path)
 endfunction
-
-
 "FUNCTION: oPath.GetLastPathComponent(dirSlash) {{{3 
 "
 "Gets the last part of this path.   
@@ -2635,7 +2632,6 @@ function! s:InsertNewNode()
 
     try
         let newPath = s:oPath.Create(newNodeName)
-
         let parentNode = t:NERDTreeRoot.FindNode(newPath.GetPathTrunk())
 
         let newTreeNode = s:oTreeFileNode.New(newPath)