mirror of
https://github.com/preservim/nerdtree.git
synced 2025-11-09 03:43:50 -05:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
62b78de367 | ||
|
|
aef6baf6e2 |
@@ -1,6 +1,7 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
#### 5.2...
|
#### 5.2...
|
||||||
|
- **.3**: Fix `<CR>` key map on the bookmark (lkebin) #1014
|
||||||
- **.2**: Make Enter work on the `.. ( up a dir )` line (PhilRunninger) #1013
|
- **.2**: Make Enter work on the `.. ( up a dir )` line (PhilRunninger) #1013
|
||||||
- **.1**: Fix nerdtree#version() on Windows. (PhilRunninger) N/A
|
- **.1**: Fix nerdtree#version() on Windows. (PhilRunninger) N/A
|
||||||
- **.0**: Expand functionality of `<CR>` mapping. (PhilRunninger) #1011
|
- **.0**: Expand functionality of `<CR>` mapping. (PhilRunninger) #1011
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ endfunction
|
|||||||
"FUNCTION: s:customOpenBookmark() {{{1
|
"FUNCTION: s:customOpenBookmark() {{{1
|
||||||
" Open bookmark node with the "custom" key, initially <CR>.
|
" Open bookmark node with the "custom" key, initially <CR>.
|
||||||
function! s:customOpenBookmark(node)
|
function! s:customOpenBookmark(node)
|
||||||
if node.isDirectory
|
if a:node.path.isDirectory
|
||||||
call a:node.activate(b:NERDTree, s:initCustomOpenArgs().dir)
|
call a:node.activate(b:NERDTree, s:initCustomOpenArgs().dir)
|
||||||
else
|
else
|
||||||
call a:node.activate(b:NERDTree, s:initCustomOpenArgs().file)
|
call a:node.activate(b:NERDTree, s:initCustomOpenArgs().file)
|
||||||
|
|||||||
Reference in New Issue
Block a user