commit 721ad3ecc2ac2ad66a92bf3df9a25964b8f48d2e parent 8618929e9a0270447e187cd005998475aaa126b3 Author: Martin Grenfell <martin.grenfell@gmail.com> Date: Tue, 8 Feb 2011 17:44:38 +1300 fix a bug when opening a file bookmark in a new tab Diffstat:
| M | plugin/NERD_tree.vim | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim @@ -390,7 +390,7 @@ function! s:Bookmark.openInNewTab(options) tabnew call s:initNerdTree(self.name) else - exec "tabedit " . bookmark.path.str({'format': 'Edit'}) + exec "tabedit " . self.path.str({'format': 'Edit'}) endif if has_key(a:options, 'stayInCurrentTab')
