nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 3a163fca64e6529e3233868d26bdba256b2f918f
parent 36e440255045ff49641397490bdeb25cdef331f5
Author: marty <martin_grenfell@msn.com>
Date:   Sat,  5 Sep 2009 22:29:11 +1200

migrate fs_menu.vim to use the new Path#str method

Diffstat:
Mnerdtree_plugin/fs_menu.vim | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/nerdtree_plugin/fs_menu.vim b/nerdtree_plugin/fs_menu.vim
@@ -122,13 +122,13 @@ function! NERDTreeDeleteNode()
         let choice =input("Delete the current node\n" .
                          \ "==========================================================\n" .
                          \ "STOP! To delete this entire directory, type 'yes'\n" .
-                         \ "" . currentNode.path.strForOS(0) . ": ")
+                         \ "" . currentNode.path.str() . ": ")
         let confirmed = choice ==# 'yes'
     else
         echo "Delete the current node\n" .
            \ "==========================================================\n".
            \ "Are you sure you wish to delete the node:\n" .
-           \ "" . currentNode.path.strForOS(0) . " (yN):"
+           \ "" . currentNode.path.str() . " (yN):"
         let choice = nr2char(getchar())
         let confirmed = choice ==# 'y'
     endif