nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 5a4ef66db266b17e727a45029fd31dbcc5efb873
parent a537e1535c4cfae9208437fe16699676c10ca218
Author: Martin Grenfell <martin_grenfell@msn.com>
Date:   Sat,  7 Jun 2008 10:12:37 +1200

improve error messages when marks dont exist

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
@@ -2821,7 +2821,7 @@ function! s:OpenMark(name)
     try
         let mark = s:GetMarks()[a:name]
     catch /E716/ "key not in dictionary error
-        call s:Echo("Invalid mark name")
+        call s:Echo("Mark doesnt exist")
         return
     endtry
 
@@ -2890,7 +2890,7 @@ function! s:RecallMark(name)
     try
         let mark = s:GetMarks()[a:name]
     catch /E716/ "key not in dictionary error
-        call s:Echo("Invalid mark name")
+        call s:Echo("Mark doesnt exist")
         return
     endtry