nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 92a31a6fb25d9866ddf243c154485b0a5744c6b4
parent a1433c485eb254838c1db52e087d5ec4d1e77cfd
Author: Mark Rushakoff <mark.rushakoff@gmail.com>
Date:   Wed,  3 Oct 2012 12:39:56 -0700

Fix typo in copy action

Diffstat:
Mnerdtree_plugin/fs_menu.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nerdtree_plugin/fs_menu.vim b/nerdtree_plugin/fs_menu.vim
@@ -26,7 +26,7 @@ if has("gui_mac") || has("gui_macvim")
 endif
 
 if g:NERDTreePath.CopyingSupported()
-    call NERDTreeAddMenuItem({'text': '(c)copy the current node', 'shortcut': 'c', 'callback': 'NERDTreeCopyNode'})
+    call NERDTreeAddMenuItem({'text': '(c)opy the current node', 'shortcut': 'c', 'callback': 'NERDTreeCopyNode'})
 endif
 
 "FUNCTION: s:echo(msg){{{1