2008-06-17 17:03:00 +08:00
|
|
|
" ============================================================================
|
|
|
|
" File: NERD_tree.vim
|
|
|
|
" Description: vim global plugin that provides a nice tree explorer
|
|
|
|
" Maintainer: Martin Grenfell <martin_grenfell at msn dot com>
|
2008-10-29 15:14:08 +08:00
|
|
|
" Last Change: 29 October, 2008
|
2008-06-17 17:03:00 +08:00
|
|
|
" License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
" ============================================================================
|
2008-12-13 06:29:30 +08:00
|
|
|
let s:NERD_tree_version = '2.14.3'
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
" SECTION: Script init stuff {{{1
|
|
|
|
"============================================================
|
|
|
|
if exists("loaded_nerd_tree")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
if v:version < 700
|
|
|
|
echoerr "NERDTree: this plugin requires vim >= 7. DOWNLOAD IT! You'll thank me later!"
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let loaded_nerd_tree = 1
|
2008-10-01 17:32:03 +08:00
|
|
|
|
|
|
|
"for line continuation - i.e dont want C in &cpo
|
|
|
|
let s:old_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"Function: s:initVariable() function {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"This function is used to initialise a given variable to a given value. The
|
|
|
|
"variable is only initialised if it does not exist prior
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"var: the name of the var to be initialised
|
|
|
|
"value: the value to initialise var to
|
|
|
|
"
|
|
|
|
"Returns:
|
|
|
|
"1 if the var is set, 0 otherwise
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:initVariable(var, value)
|
2007-11-03 05:23:09 +08:00
|
|
|
if !exists(a:var)
|
|
|
|
exec 'let ' . a:var . ' = ' . "'" . a:value . "'"
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"SECTION: Init variable calls and other random constants {{{2
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDChristmasTree", 1)
|
|
|
|
call s:initVariable("g:NERDTreeAutoCenter", 1)
|
|
|
|
call s:initVariable("g:NERDTreeAutoCenterThreshold", 3)
|
|
|
|
call s:initVariable("g:NERDTreeCaseSensitiveSort", 0)
|
|
|
|
call s:initVariable("g:NERDTreeChDirMode", 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
if !exists("g:NERDTreeIgnore")
|
|
|
|
let g:NERDTreeIgnore = ['\~$']
|
|
|
|
endif
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeBookmarksFile", expand('$HOME') . '/.NERDTreeBookmarks')
|
2008-12-17 15:55:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeHighlightCursorline", 1)
|
|
|
|
call s:initVariable("g:NERDTreeHijackNetrw", 1)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeMouseMode", 1)
|
|
|
|
call s:initVariable("g:NERDTreeNotificationThreshold", 100)
|
|
|
|
call s:initVariable("g:NERDTreeQuitOnOpen", 0)
|
|
|
|
call s:initVariable("g:NERDTreeShowBookmarks", 0)
|
|
|
|
call s:initVariable("g:NERDTreeShowFiles", 1)
|
|
|
|
call s:initVariable("g:NERDTreeShowHidden", 0)
|
|
|
|
call s:initVariable("g:NERDTreeShowLineNumbers", 0)
|
|
|
|
call s:initVariable("g:NERDTreeSortDirs", 1)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if !exists("g:NERDTreeSortOrder")
|
|
|
|
let g:NERDTreeSortOrder = ['\/$', '*', '\.swp$', '\.bak$', '\~$']
|
|
|
|
else
|
2008-06-09 08:46:53 +08:00
|
|
|
"if there isnt a * in the sort sequence then add one
|
2007-11-03 05:23:09 +08:00
|
|
|
if count(g:NERDTreeSortOrder, '*') < 1
|
|
|
|
call add(g:NERDTreeSortOrder, '*')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
"we need to use this number many times for sorting... so we calculate it only
|
2008-06-09 08:46:53 +08:00
|
|
|
"once here
|
2008-06-08 14:30:31 +08:00
|
|
|
let s:NERDTreeSortStarIndex = index(g:NERDTreeSortOrder, '*')
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeWinPos", "left")
|
|
|
|
call s:initVariable("g:NERDTreeWinSize", 31)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let s:running_windows = has("win16") || has("win32") || has("win64")
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"init the shell commands that will be used to copy nodes, and remove dir trees
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Note: the space after the command is important
|
|
|
|
if s:running_windows
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeRemoveDirCmd", 'rmdir /s /q ')
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeRemoveDirCmd", 'rm -rf ')
|
|
|
|
call s:initVariable("g:NERDTreeCopyCmd", 'cp -r ')
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"SECTION: Init variable calls for key mappings {{{2
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initVariable("g:NERDTreeMapActivateNode", "o")
|
|
|
|
call s:initVariable("g:NERDTreeMapChangeRoot", "C")
|
|
|
|
call s:initVariable("g:NERDTreeMapChdir", "cd")
|
|
|
|
call s:initVariable("g:NERDTreeMapCloseChildren", "X")
|
|
|
|
call s:initVariable("g:NERDTreeMapCloseDir", "x")
|
|
|
|
call s:initVariable("g:NERDTreeMapDeleteBookmark", "D")
|
|
|
|
call s:initVariable("g:NERDTreeMapExecute", "!")
|
|
|
|
call s:initVariable("g:NERDTreeMapFilesystemMenu", "m")
|
|
|
|
call s:initVariable("g:NERDTreeMapHelp", "?")
|
|
|
|
call s:initVariable("g:NERDTreeMapJumpFirstChild", "K")
|
|
|
|
call s:initVariable("g:NERDTreeMapJumpLastChild", "J")
|
|
|
|
call s:initVariable("g:NERDTreeMapJumpNextSibling", "<C-j>")
|
|
|
|
call s:initVariable("g:NERDTreeMapJumpParent", "p")
|
|
|
|
call s:initVariable("g:NERDTreeMapJumpPrevSibling", "<C-k>")
|
|
|
|
call s:initVariable("g:NERDTreeMapJumpRoot", "P")
|
|
|
|
call s:initVariable("g:NERDTreeMapOpenExpl", "e")
|
|
|
|
call s:initVariable("g:NERDTreeMapOpenInTab", "t")
|
|
|
|
call s:initVariable("g:NERDTreeMapOpenInTabSilent", "T")
|
|
|
|
call s:initVariable("g:NERDTreeMapOpenRecursively", "O")
|
|
|
|
call s:initVariable("g:NERDTreeMapOpenSplit", "<tab>")
|
|
|
|
call s:initVariable("g:NERDTreeMapPreview", "g" . NERDTreeMapActivateNode)
|
|
|
|
call s:initVariable("g:NERDTreeMapPreviewSplit", "g" . NERDTreeMapOpenSplit)
|
|
|
|
call s:initVariable("g:NERDTreeMapQuit", "q")
|
|
|
|
call s:initVariable("g:NERDTreeMapRefresh", "r")
|
|
|
|
call s:initVariable("g:NERDTreeMapRefreshRoot", "R")
|
|
|
|
call s:initVariable("g:NERDTreeMapToggleBookmarks", "B")
|
|
|
|
call s:initVariable("g:NERDTreeMapToggleFiles", "F")
|
|
|
|
call s:initVariable("g:NERDTreeMapToggleFilters", "f")
|
|
|
|
call s:initVariable("g:NERDTreeMapToggleHidden", "H")
|
|
|
|
call s:initVariable("g:NERDTreeMapUpdir", "u")
|
|
|
|
call s:initVariable("g:NERDTreeMapUpdirKeepOpen", "U")
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
"SECTION: Script level variable declaration{{{2
|
2008-05-04 12:48:32 +08:00
|
|
|
let s:escape_chars = " \\`\|\"#%&,?()\*^<>"
|
2008-12-13 14:29:03 +08:00
|
|
|
let s:NERDTreeBufName = '_NERD_tree_'
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let s:tree_wid = 2
|
2008-10-19 18:06:32 +08:00
|
|
|
let s:tree_markup_reg = '^[ `|]*[\-+~]'
|
2007-11-03 05:23:09 +08:00
|
|
|
let s:tree_up_dir_line = '.. (up a dir)'
|
|
|
|
|
|
|
|
let s:os_slash = '/'
|
|
|
|
if s:running_windows
|
|
|
|
let s:os_slash = '\'
|
|
|
|
endif
|
|
|
|
|
|
|
|
" SECTION: Commands {{{1
|
|
|
|
"============================================================
|
2008-06-09 08:46:53 +08:00
|
|
|
"init the command that users start the nerd tree with
|
2008-09-05 10:34:50 +08:00
|
|
|
command! -n=? -complete=dir NERDTree :call s:initNerdTree('<args>')
|
|
|
|
command! -n=? -complete=dir NERDTreeToggle :call s:toggle('<args>')
|
|
|
|
command! -n=0 NERDTreeClose :call s:closeTreeIfOpen()
|
|
|
|
command! -n=1 -complete=customlist,s:completeBookmarks NERDTreeFromBookmark call s:initNerdTree('<args>')
|
2007-11-03 05:23:09 +08:00
|
|
|
" SECTION: Auto commands {{{1
|
|
|
|
"============================================================
|
2008-12-17 15:24:08 +08:00
|
|
|
augroup NERDTree
|
|
|
|
"Save the cursor position whenever we close the nerd tree
|
|
|
|
exec "autocmd BufWinLeave *". s:NERDTreeBufName ." call <SID>saveScreenState()"
|
|
|
|
"cache bookmarks when vim loads
|
|
|
|
autocmd VimEnter * call s:Bookmark.CacheBookmarks(0)
|
|
|
|
augroup END
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-12-17 15:55:50 +08:00
|
|
|
if g:NERDTreeHijackNetrw
|
|
|
|
augroup NERDTreeHijackNetrw
|
|
|
|
autocmd VimEnter * autocmd! FileExplorer
|
|
|
|
au BufEnter * call s:checkForBrowse(expand("<amatch>"))
|
|
|
|
augroup END
|
|
|
|
endif
|
2008-12-13 14:32:35 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
"SECTION: Classes {{{1
|
|
|
|
"============================================================
|
2008-09-03 14:03:56 +08:00
|
|
|
"CLASS: Bookmark {{{2
|
2008-06-28 20:23:02 +08:00
|
|
|
"============================================================
|
2008-09-03 14:03:56 +08:00
|
|
|
let s:Bookmark = {}
|
|
|
|
" FUNCTION: Bookmark.AddBookmark(name, path) {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to add a new bookmark to the list, if a previous bookmark exists
|
|
|
|
" with the same name, just update the path for that bookmark
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.AddBookmark(name, path)
|
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-06-28 20:23:02 +08:00
|
|
|
if i.name == a:name
|
|
|
|
let i.path = a:path
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
endfor
|
2008-09-03 14:03:56 +08:00
|
|
|
call add(s:Bookmark.Bookmarks(), s:Bookmark.New(a:name, a:path))
|
|
|
|
call s:Bookmark.Sort()
|
2008-06-28 20:23:02 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.Bookmarks() {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to get all bookmarks. Lazily initializes the bookmarks global
|
|
|
|
" variable
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.Bookmarks()
|
2008-06-28 20:33:25 +08:00
|
|
|
if !exists("g:NERDTreeBookmarks")
|
|
|
|
let g:NERDTreeBookmarks = []
|
|
|
|
endif
|
|
|
|
return g:NERDTreeBookmarks
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.BookmarkExistsFor(name) {{{3
|
2008-07-13 17:02:59 +08:00
|
|
|
" class method that returns 1 if a bookmark with the given name is found, 0
|
|
|
|
" otherwise
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.BookmarkExistsFor(name)
|
2008-07-13 17:02:59 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.BookmarkFor(a:name)
|
2008-07-13 17:02:59 +08:00
|
|
|
return 1
|
|
|
|
catch /NERDTree.BookmarkNotFound/
|
|
|
|
return 0
|
|
|
|
endtry
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.BookmarkFor(name) {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to get the bookmark that has the given name. {} is return if no
|
|
|
|
" bookmark is found
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.BookmarkFor(name)
|
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-06-28 20:33:25 +08:00
|
|
|
if i.name == a:name
|
|
|
|
return i
|
|
|
|
endif
|
|
|
|
endfor
|
2008-07-13 17:02:59 +08:00
|
|
|
throw "NERDTree.BookmarkNotFound exception: no bookmark found for name: \"". a:name .'"'
|
2008-06-28 20:33:25 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.BookmarkNames() {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to return an array of all bookmark names
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.BookmarkNames()
|
2008-06-28 20:33:25 +08:00
|
|
|
let names = []
|
2008-09-03 14:03:56 +08:00
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-06-28 20:33:25 +08:00
|
|
|
call add(names, i.name)
|
|
|
|
endfor
|
|
|
|
return names
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.CacheBookmarks(silent) {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to read all bookmarks from the bookmarks file intialize
|
|
|
|
" bookmark objects for each one.
|
2008-07-15 19:22:36 +08:00
|
|
|
"
|
|
|
|
" Args:
|
|
|
|
" silent - dont echo an error msg if invalid bookmarks are found
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.CacheBookmarks(silent)
|
2008-06-28 20:23:02 +08:00
|
|
|
if filereadable(g:NERDTreeBookmarksFile)
|
2008-07-15 19:22:36 +08:00
|
|
|
let g:NERDTreeBookmarks = []
|
|
|
|
let g:NERDTreeInvalidBookmarks = []
|
2008-06-28 20:23:02 +08:00
|
|
|
let bookmarkStrings = readfile(g:NERDTreeBookmarksFile)
|
|
|
|
let invalidBookmarksFound = 0
|
|
|
|
for i in bookmarkStrings
|
|
|
|
|
2008-07-16 18:46:46 +08:00
|
|
|
"ignore blank lines
|
|
|
|
if i != ''
|
|
|
|
|
|
|
|
let name = substitute(i, '^\(.\{-}\) .*$', '\1', '')
|
|
|
|
let path = substitute(i, '^.\{-} \(.*\)$', '\1', '')
|
|
|
|
|
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let bookmark = s:Bookmark.New(name, s:Path.New(path))
|
2008-07-16 18:46:46 +08:00
|
|
|
call add(g:NERDTreeBookmarks, bookmark)
|
|
|
|
catch /NERDTree.Path.InvalidArguments/
|
|
|
|
call add(g:NERDTreeInvalidBookmarks, i)
|
|
|
|
let invalidBookmarksFound += 1
|
|
|
|
endtry
|
|
|
|
endif
|
2008-06-28 20:23:02 +08:00
|
|
|
endfor
|
|
|
|
if invalidBookmarksFound
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.Write()
|
2008-07-15 19:22:36 +08:00
|
|
|
if !a:silent
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo(invalidBookmarksFound . " invalid bookmarks were read. See :help NERDTreeInvalidBookmarks for info.")
|
2008-07-15 19:22:36 +08:00
|
|
|
endif
|
2008-06-28 20:23:02 +08:00
|
|
|
endif
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.Sort()
|
2008-06-28 20:23:02 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.compareTo(otherbookmark) {{{3
|
2008-06-30 05:36:50 +08:00
|
|
|
" Compare these two bookmarks for sorting purposes
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.compareTo(otherbookmark)
|
2008-06-30 05:36:50 +08:00
|
|
|
return a:otherbookmark.name < self.name
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.ClearAll() {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to delete all bookmarks.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.ClearAll()
|
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-09-03 11:58:19 +08:00
|
|
|
call i.delete()
|
2008-06-28 20:23:02 +08:00
|
|
|
endfor
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.Write()
|
2008-06-28 20:23:02 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.delete() {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Delete this bookmark. If the node for this bookmark is under the current
|
|
|
|
" root, then recache bookmarks for its Path object
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.delete()
|
2008-06-28 20:33:25 +08:00
|
|
|
let node = {}
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
let node = self.getNode(1)
|
2008-08-31 16:56:13 +08:00
|
|
|
catch /NERDTree.BookmarkedNodeNotFound/
|
2008-06-28 20:33:25 +08:00
|
|
|
endtry
|
2008-09-03 14:03:56 +08:00
|
|
|
call remove(s:Bookmark.Bookmarks(), index(s:Bookmark.Bookmarks(), self))
|
2008-06-28 20:33:25 +08:00
|
|
|
if !empty(node)
|
2008-09-03 11:58:19 +08:00
|
|
|
call node.path.cacheDisplayString()
|
2008-06-28 20:33:25 +08:00
|
|
|
endif
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.Write()
|
2008-06-28 20:33:25 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.getNode(searchFromAbsoluteRoot) {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Gets the treenode for this bookmark
|
2008-06-28 20:23:02 +08:00
|
|
|
"
|
2008-06-28 20:33:25 +08:00
|
|
|
" Args:
|
|
|
|
" searchFromAbsoluteRoot: specifies whether we should search from the current
|
|
|
|
" tree root, or the highest cached node
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.getNode(searchFromAbsoluteRoot)
|
2008-12-13 14:29:03 +08:00
|
|
|
let searchRoot = a:searchFromAbsoluteRoot ? s:TreeDirNode.AbsoluteTreeRoot() : b:NERDTreeRoot
|
2008-09-03 11:58:19 +08:00
|
|
|
let targetNode = searchRoot.findNode(self.path)
|
2008-06-28 20:23:02 +08:00
|
|
|
if empty(targetNode)
|
2008-07-13 17:02:59 +08:00
|
|
|
throw "NERDTree.BookmarkedNodeNotFound no node was found for bookmark: " . self.name
|
2008-06-28 20:23:02 +08:00
|
|
|
endif
|
|
|
|
return targetNode
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.GetNodeForName(name, searchFromAbsoluteRoot) {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method that finds the bookmark with the given name and returns the
|
|
|
|
" treenode for it.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.GetNodeForName(name, searchFromAbsoluteRoot)
|
|
|
|
let bookmark = s:Bookmark.BookmarkFor(a:name)
|
2008-09-03 11:58:19 +08:00
|
|
|
return bookmark.getNode(a:searchFromAbsoluteRoot)
|
2008-06-28 20:23:02 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.InvalidBookmarks() {{{3
|
2008-07-15 19:22:36 +08:00
|
|
|
" Class method to get all invalid bookmark strings read from the bookmarks
|
|
|
|
" file
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.InvalidBookmarks()
|
2008-07-15 19:22:36 +08:00
|
|
|
if !exists("g:NERDTreeInvalidBookmarks")
|
|
|
|
let g:NERDTreeInvalidBookmarks = []
|
|
|
|
endif
|
|
|
|
return g:NERDTreeInvalidBookmarks
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.mustExist() {{{3
|
|
|
|
function! s:Bookmark.mustExist()
|
2008-09-03 11:58:19 +08:00
|
|
|
if !self.path.exists()
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.CacheBookmarks(1)
|
2008-07-13 12:38:52 +08:00
|
|
|
throw "NERDTree.BookmarkPointsToInvalidLocation exception: the bookmark \"".
|
2008-09-03 11:58:19 +08:00
|
|
|
\ self.name ."\" points to a non existing location: \"". self.path.strForOS(0)
|
2008-07-13 12:38:52 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.New(name, path) {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Create a new bookmark object with the given name and path object
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.New(name, path)
|
2008-07-02 17:22:26 +08:00
|
|
|
if a:name =~ ' '
|
2008-07-02 17:15:28 +08:00
|
|
|
throw "NERDTree.IllegalBookmarkName illegal name:" . a:name
|
2008-06-28 20:23:02 +08:00
|
|
|
endif
|
2008-06-28 20:33:25 +08:00
|
|
|
|
|
|
|
let newBookmark = copy(self)
|
|
|
|
let newBookmark.name = a:name
|
|
|
|
let newBookmark.path = a:path
|
|
|
|
return newBookmark
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.setPath(path) {{{3
|
2008-07-13 09:43:43 +08:00
|
|
|
" makes this bookmark point to the given path
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.setPath(path)
|
2008-07-13 09:43:43 +08:00
|
|
|
let self.path = a:path
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.Sort() {{{3
|
2008-06-30 05:36:50 +08:00
|
|
|
" Class method that sorts all bookmarks
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.Sort()
|
2008-09-05 10:34:50 +08:00
|
|
|
let CompareFunc = function("s:compareBookmarks")
|
2008-09-03 14:03:56 +08:00
|
|
|
call sort(s:Bookmark.Bookmarks(), CompareFunc)
|
2008-06-30 05:36:50 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.str() {{{3
|
2008-06-28 20:41:34 +08:00
|
|
|
" Get the string that should be rendered in the view for this bookmark
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.str()
|
2008-09-05 10:34:50 +08:00
|
|
|
let pathStrMaxLen = winwidth(s:getTreeWinNum()) - 4 - len(self.name)
|
2008-06-30 05:26:18 +08:00
|
|
|
if &nu
|
|
|
|
let pathStrMaxLen = pathStrMaxLen - &numberwidth
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let pathStr = self.path.strForOS(0)
|
2008-06-28 20:41:34 +08:00
|
|
|
if len(pathStr) > pathStrMaxLen
|
|
|
|
let pathStr = '<' . strpart(pathStr, len(pathStr) - pathStrMaxLen)
|
|
|
|
endif
|
2008-08-31 16:57:37 +08:00
|
|
|
return '>' . self.name . ' ' . pathStr
|
2008-06-28 20:41:34 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
" FUNCTION: Bookmark.toRoot() {{{3
|
2008-09-03 13:40:33 +08:00
|
|
|
" Make the node for this bookmark the new tree root
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.toRoot()
|
2008-09-03 13:40:33 +08:00
|
|
|
if self.validate()
|
|
|
|
try
|
2008-09-29 06:33:58 +08:00
|
|
|
let targetNode = self.getNode(1)
|
2008-09-03 13:40:33 +08:00
|
|
|
catch /NERDTree.BookmarkedNodeNotFound/
|
2008-09-03 14:03:56 +08:00
|
|
|
let targetNode = s:TreeFileNode.New(s:Bookmark.BookmarkFor(self.name).path)
|
2008-09-03 13:40:33 +08:00
|
|
|
endtry
|
|
|
|
call targetNode.makeRoot()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(targetNode, 0, 0)
|
2008-09-03 13:40:33 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:12:03 +08:00
|
|
|
" FUNCTION: Bookmark.ToRoot(name) {{{3
|
2008-09-03 13:40:33 +08:00
|
|
|
" Make the node for this bookmark the new tree root
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.ToRoot(name)
|
|
|
|
let bookmark = s:Bookmark.BookmarkFor(a:name)
|
2008-09-03 13:40:33 +08:00
|
|
|
call bookmark.toRoot()
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Bookmark.validate() {{{3
|
|
|
|
function! s:Bookmark.validate()
|
2008-09-03 13:40:33 +08:00
|
|
|
if self.path.exists()
|
|
|
|
return 1
|
|
|
|
else
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.CacheBookmarks(1)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:echo(self.name . "now points to an invalid location. See :help NERDTreeInvalidBookmarks for info.")
|
2008-09-03 13:40:33 +08:00
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
" Function: Bookmark.Write() {{{3
|
2008-06-28 20:33:25 +08:00
|
|
|
" Class method to write all bookmarks to the bookmarks file
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Bookmark.Write()
|
2008-06-28 20:33:25 +08:00
|
|
|
let bookmarkStrings = []
|
2008-09-03 14:03:56 +08:00
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-09-03 11:58:19 +08:00
|
|
|
call add(bookmarkStrings, i.name . ' ' . i.path.strForOS(0))
|
2008-06-28 20:33:25 +08:00
|
|
|
endfor
|
2008-07-16 18:46:46 +08:00
|
|
|
|
|
|
|
"add a blank line before the invalid ones
|
|
|
|
call add(bookmarkStrings, "")
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
for j in s:Bookmark.InvalidBookmarks()
|
2008-07-15 19:22:36 +08:00
|
|
|
call add(bookmarkStrings, j)
|
|
|
|
endfor
|
2008-06-28 20:33:25 +08:00
|
|
|
call writefile(bookmarkStrings, g:NERDTreeBookmarksFile)
|
2008-06-28 20:23:02 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"CLASS: TreeFileNode {{{2
|
|
|
|
"This class is the parent of the TreeDirNode class and constitures the
|
2007-11-03 05:23:09 +08:00
|
|
|
"'Component' part of the composite design pattern between the treenode
|
|
|
|
"classes.
|
|
|
|
"============================================================
|
2008-09-03 14:03:56 +08:00
|
|
|
let s:TreeFileNode = {}
|
|
|
|
"FUNCTION: TreeFileNode.bookmark(name) {{{3
|
2008-06-28 20:23:02 +08:00
|
|
|
"bookmark this node with a:name
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.bookmark(name)
|
2008-06-28 20:23:02 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let oldMarkedNode = s:Bookmark.GetNodeForName(a:name, 1)
|
2008-09-03 11:58:19 +08:00
|
|
|
call oldMarkedNode.path.cacheDisplayString()
|
2008-06-28 20:23:02 +08:00
|
|
|
catch /NERDTree.Bookmark\(DoesntExist\|NotFound\)/
|
|
|
|
endtry
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.AddBookmark(a:name, self.path)
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.cacheDisplayString()
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.Write()
|
2008-06-28 20:23:02 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.cacheParent() {{{3
|
2008-06-08 16:53:12 +08:00
|
|
|
"initializes self.parent if it isnt already
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.cacheParent()
|
2008-06-08 16:53:12 +08:00
|
|
|
if empty(self.parent)
|
2008-09-03 11:58:19 +08:00
|
|
|
let parentPath = self.path.getParent()
|
|
|
|
if parentPath.equals(self.path)
|
2008-06-08 16:53:12 +08:00
|
|
|
throw "NERDTree.CannotCacheParent exception: already at root"
|
|
|
|
endif
|
2008-09-03 14:03:56 +08:00
|
|
|
let self.parent = s:TreeFileNode.New(parentPath)
|
2008-06-08 16:53:12 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: TreeFileNode.compareNodes {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"This is supposed to be a class level method but i cant figure out how to
|
2008-06-09 08:46:53 +08:00
|
|
|
"get func refs to work from a dict..
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"A class level method that compares two nodes
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"n1, n2: the 2 nodes to compare
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:compareNodes(n1, n2)
|
2008-09-03 11:58:19 +08:00
|
|
|
return a:n1.path.compareTo(a:n2.path)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.clearBoomarks() {{{3
|
|
|
|
function! s:TreeFileNode.clearBoomarks()
|
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-09-03 11:58:19 +08:00
|
|
|
if i.path.equals(self.path)
|
|
|
|
call i.delete()
|
2008-06-09 09:21:44 +08:00
|
|
|
end
|
|
|
|
endfor
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.cacheDisplayString()
|
2008-06-09 09:21:44 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.copy(dest) {{{3
|
|
|
|
function! s:TreeFileNode.copy(dest)
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.copy(a:dest)
|
2008-09-03 14:03:56 +08:00
|
|
|
let newPath = s:Path.New(a:dest)
|
2008-12-13 14:29:03 +08:00
|
|
|
let parent = b:NERDTreeRoot.findNode(newPath.getParent())
|
2008-06-03 18:01:41 +08:00
|
|
|
if !empty(parent)
|
2008-09-03 11:58:19 +08:00
|
|
|
call parent.refresh()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-09-03 11:58:19 +08:00
|
|
|
return parent.findNode(newPath)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.delete {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Removes this node from the tree and calls the Delete method for its path obj
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.delete()
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.delete()
|
|
|
|
call self.parent.removeChild(self)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.equals(treenode) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Compares this treenode to the input treenode and returns 1 if they are the
|
|
|
|
"same node.
|
|
|
|
"
|
|
|
|
"Use this method instead of == because sometimes when the treenodes contain
|
|
|
|
"many children, vim seg faults when doing ==
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"treenode: the other treenode to compare to
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.equals(treenode)
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.path.str(1) == a:treenode.path.str(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.findNode(path) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns self if this node.path.Equals the given path.
|
|
|
|
"Returns {} if not equal.
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: the path object to compare against
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.findNode(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
if a:path.equals(self.path)
|
2007-11-03 05:23:09 +08:00
|
|
|
return self
|
|
|
|
endif
|
|
|
|
return {}
|
|
|
|
endfunction
|
2008-09-24 08:42:42 +08:00
|
|
|
"FUNCTION: TreeFileNode.findOpenDirSiblingWithVisibleChildren(direction) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Finds the next sibling for this node in the indicated direction. This sibling
|
|
|
|
"must be a directory and may/may not have children as specified.
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"direction: 0 if you want to find the previous sibling, 1 for the next sibling
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a treenode object or {} if no appropriate sibling could be found
|
2008-09-24 08:42:42 +08:00
|
|
|
function! s:TreeFileNode.findOpenDirSiblingWithVisibleChildren(direction)
|
2008-06-09 08:46:53 +08:00
|
|
|
"if we have no parent then we can have no siblings
|
2007-11-03 05:23:09 +08:00
|
|
|
if self.parent != {}
|
2008-09-03 11:58:19 +08:00
|
|
|
let nextSibling = self.findSibling(a:direction)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
while nextSibling != {}
|
2008-09-03 11:58:19 +08:00
|
|
|
if nextSibling.path.isDirectory && nextSibling.hasVisibleChildren() && nextSibling.isOpen
|
2007-11-03 05:23:09 +08:00
|
|
|
return nextSibling
|
|
|
|
endif
|
2008-09-03 11:58:19 +08:00
|
|
|
let nextSibling = nextSibling.findSibling(a:direction)
|
2007-11-03 05:23:09 +08:00
|
|
|
endwhile
|
|
|
|
endif
|
|
|
|
|
|
|
|
return {}
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.findSibling(direction) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
2008-06-09 08:46:53 +08:00
|
|
|
"Finds the next sibling for this node in the indicated direction
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"direction: 0 if you want to find the previous sibling, 1 for the next sibling
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a treenode object or {} if no sibling could be found
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.findSibling(direction)
|
2008-06-09 08:46:53 +08:00
|
|
|
"if we have no parent then we can have no siblings
|
2007-11-03 05:23:09 +08:00
|
|
|
if self.parent != {}
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"get the index of this node in its parents children
|
2008-09-03 11:58:19 +08:00
|
|
|
let siblingIndx = self.parent.getChildIndex(self.path)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if siblingIndx != -1
|
2008-06-09 08:46:53 +08:00
|
|
|
"move a long to the next potential sibling node
|
2007-11-03 05:23:09 +08:00
|
|
|
let siblingIndx = a:direction == 1 ? siblingIndx+1 : siblingIndx-1
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"keep moving along to the next sibling till we find one that is valid
|
2008-09-03 11:58:19 +08:00
|
|
|
let numSiblings = self.parent.getChildCount()
|
2007-11-03 05:23:09 +08:00
|
|
|
while siblingIndx >= 0 && siblingIndx < numSiblings
|
|
|
|
|
|
|
|
"if the next node is not an ignored node (i.e. wont show up in the
|
|
|
|
"view) then return it
|
2008-09-03 11:58:19 +08:00
|
|
|
if self.parent.children[siblingIndx].path.ignore() == 0
|
2007-11-03 05:23:09 +08:00
|
|
|
return self.parent.children[siblingIndx]
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"go to next node
|
2007-11-03 05:23:09 +08:00
|
|
|
let siblingIndx = a:direction == 1 ? siblingIndx+1 : siblingIndx-1
|
|
|
|
endwhile
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return {}
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.isVisible() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"returns 1 if this node should be visible according to the tree filters and
|
|
|
|
"hidden file filters (and their on/off status)
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.isVisible()
|
2008-09-03 11:58:19 +08:00
|
|
|
return !self.path.ignore()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.isRoot() {{{3
|
2008-12-13 14:29:03 +08:00
|
|
|
"returns 1 if this node is b:NERDTreeRoot
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.isRoot()
|
2008-12-13 19:40:17 +08:00
|
|
|
if !s:treeExistsForBuf()
|
|
|
|
throw "NERDTree.NoTreeError: No tree exists for the current buffer"
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-12-13 19:40:17 +08:00
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
return self.equals(b:NERDTreeRoot)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.makeRoot() {{{3
|
2008-06-07 13:36:14 +08:00
|
|
|
"Make this node the root of the tree
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.makeRoot()
|
2008-06-07 13:36:14 +08:00
|
|
|
if self.path.isDirectory
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeRoot = self
|
2008-06-07 13:36:14 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.cacheParent()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeRoot = self.parent
|
2008-06-07 13:36:14 +08:00
|
|
|
endif
|
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
call b:NERDTreeRoot.open()
|
2008-06-07 13:36:14 +08:00
|
|
|
|
|
|
|
"change dir to the dir of the new root if instructed to
|
|
|
|
if g:NERDTreeChDirMode == 2
|
2008-12-13 14:29:03 +08:00
|
|
|
exec "cd " . b:NERDTreeRoot.path.strForEditCmd()
|
2008-06-07 13:36:14 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.New(path) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns a new TreeNode object with the given path and parent
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: a path object representing the full filesystem path to the file/dir that the node represents
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.New(path)
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:path.isDirectory
|
2008-09-03 14:03:56 +08:00
|
|
|
return s:TreeDirNode.New(a:path)
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
|
|
|
let newTreeNode = {}
|
|
|
|
let newTreeNode = copy(self)
|
|
|
|
let newTreeNode.path = a:path
|
|
|
|
let newTreeNode.parent = {}
|
|
|
|
return newTreeNode
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.refresh() {{{3
|
|
|
|
function! s:TreeFileNode.refresh()
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.refresh()
|
2008-06-09 17:13:25 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.rename() {{{3
|
2008-06-09 08:46:53 +08:00
|
|
|
"Calls the rename method for this nodes path obj
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.rename(newName)
|
2008-05-10 11:33:11 +08:00
|
|
|
let newName = substitute(a:newName, '\(\\\|\/\)$', '', '')
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.rename(newName)
|
|
|
|
call self.parent.removeChild(self)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let parentPath = self.path.getPathTrunk()
|
2008-12-13 14:29:03 +08:00
|
|
|
let newParent = b:NERDTreeRoot.findNode(parentPath)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if newParent != {}
|
2008-09-03 11:58:19 +08:00
|
|
|
call newParent.createChild(self.path, 1)
|
|
|
|
call newParent.refresh()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeFileNode.strDisplay() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Returns a string that specifies how the node should be represented as a
|
|
|
|
"string
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a string that can be used in the view to represent this node
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeFileNode.strDisplay()
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.path.strDisplay()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"CLASS: TreeDirNode {{{2
|
|
|
|
"This class is a child of the TreeFileNode class and constitutes the
|
2007-11-03 05:23:09 +08:00
|
|
|
"'Composite' part of the composite design pattern between the treenode
|
|
|
|
"classes.
|
|
|
|
"============================================================
|
2008-09-03 14:03:56 +08:00
|
|
|
let s:TreeDirNode = copy(s:TreeFileNode)
|
|
|
|
"FUNCTION: TreeDirNode.AbsoluteTreeRoot(){{{3
|
2008-09-03 12:32:14 +08:00
|
|
|
"class method that returns the highest cached ancestor of the current root
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.AbsoluteTreeRoot()
|
2008-12-13 14:29:03 +08:00
|
|
|
let currentNode = b:NERDTreeRoot
|
2008-09-03 12:32:14 +08:00
|
|
|
while currentNode.parent != {}
|
|
|
|
let currentNode = currentNode.parent
|
|
|
|
endwhile
|
|
|
|
return currentNode
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.addChild(treenode, inOrder) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Adds the given treenode to the list of children for this node
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"-treenode: the node to add
|
|
|
|
"-inOrder: 1 if the new node should be inserted in sorted order
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.addChild(treenode, inOrder)
|
2007-11-03 05:23:09 +08:00
|
|
|
call add(self.children, a:treenode)
|
|
|
|
let a:treenode.parent = self
|
|
|
|
|
|
|
|
if a:inOrder
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.sortChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.close() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Closes this directory
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.close()
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isOpen = 0
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.closeChildren() {{{3
|
2008-06-09 08:46:53 +08:00
|
|
|
"Closes all the child dir nodes of this node
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.closeChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
for i in self.children
|
|
|
|
if i.path.isDirectory
|
2008-09-03 11:58:19 +08:00
|
|
|
call i.close()
|
|
|
|
call i.closeChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.createChild(path, inOrder) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Instantiates a new child node for this node with the given path. The new
|
|
|
|
"nodes parent is set to this node.
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: a Path object that this node will represent/contain
|
|
|
|
"inOrder: 1 if the new node should be inserted in sorted order
|
|
|
|
"
|
|
|
|
"Returns:
|
|
|
|
"the newly created node
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.createChild(path, inOrder)
|
|
|
|
let newTreeNode = s:TreeFileNode.New(a:path)
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.addChild(newTreeNode, a:inOrder)
|
2007-11-03 05:23:09 +08:00
|
|
|
return newTreeNode
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.findNode(path) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Will find one of the children (recursively) that has the given path
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: a path object
|
2008-10-16 17:55:44 +08:00
|
|
|
unlet s:TreeDirNode.findNode
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.findNode(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
if a:path.equals(self.path)
|
2007-11-03 05:23:09 +08:00
|
|
|
return self
|
|
|
|
endif
|
2008-09-03 11:58:19 +08:00
|
|
|
if stridx(a:path.str(1), self.path.str(1), 0) == -1
|
2007-11-03 05:23:09 +08:00
|
|
|
return {}
|
|
|
|
endif
|
|
|
|
|
|
|
|
if self.path.isDirectory
|
|
|
|
for i in self.children
|
2008-09-03 11:58:19 +08:00
|
|
|
let retVal = i.findNode(a:path)
|
2007-11-03 05:23:09 +08:00
|
|
|
if retVal != {}
|
|
|
|
return retVal
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
return {}
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.getChildCount() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns the number of children this node has
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.getChildCount()
|
2007-11-03 05:23:09 +08:00
|
|
|
return len(self.children)
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.getChild(path) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns child node of this node that has the given path or {} if no such node
|
|
|
|
"exists.
|
|
|
|
"
|
|
|
|
"This function doesnt not recurse into child dir nodes
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: a path object
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.getChild(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
if stridx(a:path.str(1), self.path.str(1), 0) == -1
|
2007-11-03 05:23:09 +08:00
|
|
|
return {}
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let index = self.getChildIndex(a:path)
|
2007-11-03 05:23:09 +08:00
|
|
|
if index == -1
|
|
|
|
return {}
|
|
|
|
else
|
|
|
|
return self.children[index]
|
|
|
|
endif
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.getChildByIndex(indx, visible) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"returns the child at the given index
|
|
|
|
"Args:
|
|
|
|
"indx: the index to get the child from
|
|
|
|
"visible: 1 if only the visible children array should be used, 0 if all the
|
|
|
|
"children should be searched.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.getChildByIndex(indx, visible)
|
2008-09-03 11:58:19 +08:00
|
|
|
let array_to_search = a:visible? self.getVisibleChildren() : self.children
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:indx > len(array_to_search)
|
|
|
|
throw "NERDTree.TreeDirNode.InvalidArguments exception. Index is out of bounds."
|
|
|
|
endif
|
|
|
|
return array_to_search[a:indx]
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.getChildIndex(path) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns the index of the child node of this node that has the given path or
|
|
|
|
"-1 if no such node exists.
|
|
|
|
"
|
|
|
|
"This function doesnt not recurse into child dir nodes
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: a path object
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.getChildIndex(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
if stridx(a:path.str(1), self.path.str(1), 0) == -1
|
2007-11-03 05:23:09 +08:00
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"do a binary search for the child
|
2007-11-03 05:23:09 +08:00
|
|
|
let a = 0
|
2008-09-03 11:58:19 +08:00
|
|
|
let z = self.getChildCount()
|
2007-11-03 05:23:09 +08:00
|
|
|
while a < z
|
|
|
|
let mid = (a+z)/2
|
2008-09-03 11:58:19 +08:00
|
|
|
let diff = a:path.compareTo(self.children[mid].path)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if diff == -1
|
|
|
|
let z = mid
|
|
|
|
elseif diff == 1
|
|
|
|
let a = mid+1
|
|
|
|
else
|
|
|
|
return mid
|
|
|
|
endif
|
|
|
|
endwhile
|
|
|
|
return -1
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.getVisibleChildCount() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns the number of visible children this node has
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.getVisibleChildCount()
|
2008-09-03 11:58:19 +08:00
|
|
|
return len(self.getVisibleChildren())
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.getVisibleChildren() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns a list of children to display for this node, in the correct order
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"an array of treenodes
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.getVisibleChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
let toReturn = []
|
|
|
|
for i in self.children
|
2008-09-03 11:58:19 +08:00
|
|
|
if i.path.ignore() == 0
|
2007-11-03 05:23:09 +08:00
|
|
|
call add(toReturn, i)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
return toReturn
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.hasVisibleChildren() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"returns 1 if this node has any childre, 0 otherwise..
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.hasVisibleChildren()
|
2008-09-24 08:42:15 +08:00
|
|
|
return self.getVisibleChildCount() != 0
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:20:09 +08:00
|
|
|
"FUNCTION: TreeDirNode._initChildren() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Removes all childen from this node and re-reads them
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"silent: 1 if the function should not echo any "please wait" messages for
|
|
|
|
"large directories
|
|
|
|
"
|
|
|
|
"Return: the number of child nodes read
|
2008-09-03 14:20:09 +08:00
|
|
|
function! s:TreeDirNode._initChildren(silent)
|
2008-06-09 08:46:53 +08:00
|
|
|
"remove all the current child nodes
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.children = []
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"get an array of all the files in the nodes dir
|
2007-11-03 05:23:09 +08:00
|
|
|
let dir = self.path
|
2008-09-03 11:58:19 +08:00
|
|
|
let filesStr = globpath(dir.strForGlob(), '*') . "\n" . globpath(dir.strForGlob(), '.*')
|
2007-11-03 05:23:09 +08:00
|
|
|
let files = split(filesStr, "\n")
|
|
|
|
|
|
|
|
if !a:silent && len(files) > g:NERDTreeNotificationThreshold
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Please wait, caching a large dir ...")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
let invalidFilesFound = 0
|
|
|
|
for i in files
|
|
|
|
|
2008-05-04 17:31:38 +08:00
|
|
|
"filter out the .. and . directories
|
|
|
|
"Note: we must match .. AND ../ cos sometimes the globpath returns
|
|
|
|
"../ for path with strange chars (eg $)
|
2008-05-16 08:22:23 +08:00
|
|
|
if i !~ '\.\.\/\?$' && i !~ '\.\/\?$'
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"put the next file in a new node and attach it
|
2007-11-03 05:23:09 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let path = s:Path.New(i)
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.createChild(path, 0)
|
2008-07-19 20:50:47 +08:00
|
|
|
catch /^NERDTree.Path.\(InvalidArguments\|InvalidFiletype\)/
|
2008-07-19 21:06:00 +08:00
|
|
|
let invalidFilesFound += 1
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.sortChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if !a:silent && len(files) > g:NERDTreeNotificationThreshold
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Please wait, caching a large dir ... DONE (". self.getChildCount() ." nodes cached).")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
if invalidFilesFound
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning(invalidFilesFound . " file(s) could not be loaded into the NERD tree")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.getChildCount()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.New(path) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns a new TreeNode object with the given path and parent
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: a path object representing the full filesystem path to the file/dir that the node represents
|
2008-10-16 17:55:44 +08:00
|
|
|
unlet s:TreeDirNode.New
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.New(path)
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:path.isDirectory != 1
|
|
|
|
throw "NERDTree.TreeDirNode.InvalidArguments exception. A TreeDirNode object must be instantiated with a directory Path object."
|
|
|
|
endif
|
|
|
|
|
|
|
|
let newTreeNode = copy(self)
|
|
|
|
let newTreeNode.path = a:path
|
|
|
|
|
|
|
|
let newTreeNode.isOpen = 0
|
|
|
|
let newTreeNode.children = []
|
|
|
|
|
|
|
|
let newTreeNode.parent = {}
|
|
|
|
|
|
|
|
return newTreeNode
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.open() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Reads in all this nodes children
|
|
|
|
"
|
|
|
|
"Return: the number of child nodes read
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.open()
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isOpen = 1
|
|
|
|
if self.children == []
|
2008-09-03 14:20:09 +08:00
|
|
|
return self._initChildren(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.openRecursively() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Opens this treenode and all of its children whose paths arent 'ignored'
|
|
|
|
"because of the file filters.
|
|
|
|
"
|
|
|
|
"This method is actually a wrapper for the OpenRecursively2 method which does
|
|
|
|
"the work.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.openRecursively()
|
2008-09-04 11:40:09 +08:00
|
|
|
call self._openRecursively2(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:19:44 +08:00
|
|
|
"FUNCTION: TreeDirNode._openRecursively2() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Opens this all children of this treenode recursively if either:
|
|
|
|
" *they arent filtered by file filters
|
|
|
|
" *a:forceOpen is 1
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"forceOpen: 1 if this node should be opened regardless of file filters
|
2008-09-03 14:19:44 +08:00
|
|
|
function! s:TreeDirNode._openRecursively2(forceOpen)
|
2008-09-03 11:58:19 +08:00
|
|
|
if self.path.ignore() == 0 || a:forceOpen
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isOpen = 1
|
|
|
|
if self.children == []
|
2008-09-03 14:20:09 +08:00
|
|
|
call self._initChildren(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
for i in self.children
|
|
|
|
if i.path.isDirectory == 1
|
2008-09-04 11:40:09 +08:00
|
|
|
call i._openRecursively2(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.refresh() {{{3
|
2008-10-16 17:55:44 +08:00
|
|
|
unlet s:TreeDirNode.refresh
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.refresh()
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.path.refresh()
|
2008-06-09 17:13:25 +08:00
|
|
|
|
|
|
|
"if this node was ever opened, refresh its children
|
|
|
|
if self.isOpen || !empty(self.children)
|
|
|
|
"go thru all the files/dirs under this node
|
|
|
|
let newChildNodes = []
|
|
|
|
let invalidFilesFound = 0
|
|
|
|
let dir = self.path
|
2008-09-03 11:58:19 +08:00
|
|
|
let filesStr = globpath(dir.strForGlob(), '*') . "\n" . globpath(dir.strForGlob(), '.*')
|
2008-06-09 17:13:25 +08:00
|
|
|
let files = split(filesStr, "\n")
|
|
|
|
for i in files
|
|
|
|
if i !~ '\.\.$' && i !~ '\.$'
|
|
|
|
|
|
|
|
try
|
|
|
|
"create a new path and see if it exists in this nodes children
|
2008-09-03 14:03:56 +08:00
|
|
|
let path = s:Path.New(i)
|
2008-09-03 11:58:19 +08:00
|
|
|
let newNode = self.getChild(path)
|
2008-06-09 17:13:25 +08:00
|
|
|
if newNode != {}
|
2008-09-03 11:58:19 +08:00
|
|
|
call newNode.refresh()
|
2008-06-09 17:13:25 +08:00
|
|
|
call add(newChildNodes, newNode)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 17:13:25 +08:00
|
|
|
"the node doesnt exist so create it
|
|
|
|
else
|
2008-09-03 14:03:56 +08:00
|
|
|
let newNode = s:TreeFileNode.New(path)
|
2008-06-09 17:13:25 +08:00
|
|
|
let newNode.parent = self
|
|
|
|
call add(newChildNodes, newNode)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
2008-06-09 17:13:25 +08:00
|
|
|
catch /^NERDTree.InvalidArguments/
|
|
|
|
let invalidFilesFound = 1
|
|
|
|
endtry
|
|
|
|
endif
|
|
|
|
endfor
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 17:13:25 +08:00
|
|
|
"swap this nodes children out for the children we just read/refreshed
|
|
|
|
let self.children = newChildNodes
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.sortChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 17:13:25 +08:00
|
|
|
if invalidFilesFound
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("some files could not be loaded into the NERD tree")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:23:08 +08:00
|
|
|
"FUNCTION: TreeDirNode.removeChild(treenode) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Removes the given treenode from this nodes set of children
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"treenode: the node to remove
|
|
|
|
"
|
|
|
|
"Throws a NERDTree.TreeDirNode exception if the given treenode is not found
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.removeChild(treenode)
|
2008-09-03 11:58:19 +08:00
|
|
|
for i in range(0, self.getChildCount()-1)
|
|
|
|
if self.children[i].equals(a:treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
call remove(self.children, i)
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
throw "NERDTree.TreeDirNode exception: child node was not found"
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.sortChildren() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Sorts the children of this node according to alphabetical order and the
|
|
|
|
"directory priority.
|
|
|
|
"
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.sortChildren()
|
2008-09-05 10:34:50 +08:00
|
|
|
let CompareFunc = function("s:compareNodes")
|
2007-11-03 05:23:09 +08:00
|
|
|
call sort(self.children, CompareFunc)
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.toggleOpen() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Opens this directory if it is closed and vice versa
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.toggleOpen()
|
2007-11-03 05:23:09 +08:00
|
|
|
if self.isOpen == 1
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.close()
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.open()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: TreeDirNode.transplantChild(newNode) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Replaces the child of this with the given node (where the child node's full
|
|
|
|
"path matches a:newNode's fullpath). The search for the matching node is
|
|
|
|
"non-recursive
|
|
|
|
"
|
|
|
|
"Arg:
|
2008-06-09 08:46:53 +08:00
|
|
|
"newNode: the node to graft into the tree
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:TreeDirNode.transplantChild(newNode)
|
2008-09-03 11:58:19 +08:00
|
|
|
for i in range(0, self.getChildCount()-1)
|
|
|
|
if self.children[i].equals(a:newNode)
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.children[i] = a:newNode
|
|
|
|
let a:newNode.parent = self
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endfunction
|
|
|
|
"============================================================
|
2008-09-03 14:03:56 +08:00
|
|
|
"CLASS: Path {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"============================================================
|
2008-09-03 14:03:56 +08:00
|
|
|
let s:Path = {}
|
|
|
|
"FUNCTION: Path.bookmarkNames() {{{3
|
|
|
|
function! s:Path.bookmarkNames()
|
2008-09-11 08:01:54 +08:00
|
|
|
if !exists("self._bookmarkNames")
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.cacheDisplayString()
|
2008-06-12 17:14:07 +08:00
|
|
|
endif
|
2008-09-11 08:01:54 +08:00
|
|
|
return self._bookmarkNames
|
2008-06-12 17:14:07 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.cacheDisplayString() {{{3
|
|
|
|
function! s:Path.cacheDisplayString()
|
2008-09-03 11:58:19 +08:00
|
|
|
let self.cachedDisplayString = self.getLastPathComponent(1)
|
2008-07-01 17:13:21 +08:00
|
|
|
|
|
|
|
if self.isExecutable
|
|
|
|
let self.cachedDisplayString = self.cachedDisplayString . '*'
|
|
|
|
endif
|
|
|
|
|
2008-09-11 08:01:54 +08:00
|
|
|
let self._bookmarkNames = []
|
2008-09-03 14:03:56 +08:00
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-09-03 11:58:19 +08:00
|
|
|
if i.path.equals(self)
|
2008-09-11 08:01:54 +08:00
|
|
|
call add(self._bookmarkNames, i.name)
|
2008-06-09 17:18:30 +08:00
|
|
|
endif
|
|
|
|
endfor
|
2008-09-11 08:01:54 +08:00
|
|
|
if !empty(self._bookmarkNames)
|
|
|
|
let self.cachedDisplayString .= ' {' . join(self._bookmarkNames) . '}'
|
2008-07-01 17:13:21 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
if self.isSymLink
|
|
|
|
let self.cachedDisplayString .= ' -> ' . self.symLinkDest
|
|
|
|
endif
|
|
|
|
|
|
|
|
if self.isReadOnly
|
|
|
|
let self.cachedDisplayString .= ' [RO]'
|
|
|
|
endif
|
2008-06-09 17:18:30 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.changeToDir() {{{3
|
|
|
|
function! s:Path.changeToDir()
|
2008-09-03 11:58:19 +08:00
|
|
|
let dir = self.strForCd()
|
2007-11-03 05:23:09 +08:00
|
|
|
if self.isDirectory == 0
|
2008-09-03 11:58:19 +08:00
|
|
|
let dir = self.getPathTrunk().strForCd()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
|
|
|
execute "cd " . dir
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("CWD is now: " . getcwd())
|
2007-11-03 05:23:09 +08:00
|
|
|
catch
|
|
|
|
throw "NERDTree.Path.Change exception: cannot change to " . dir
|
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.compareTo() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
2008-09-03 14:03:56 +08:00
|
|
|
"Compares this Path to the given path and returns 0 if they are equal, -1 if
|
|
|
|
"this Path is "less than" the given path, or 1 if it is "greater".
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: the path object to compare this to
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"1, -1 or 0
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.compareTo(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
let thisPath = self.getLastPathComponent(1)
|
|
|
|
let thatPath = a:path.getLastPathComponent(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"if the paths are the same then clearly we return 0
|
2007-11-03 05:23:09 +08:00
|
|
|
if thisPath == thatPath
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let thisSS = self.getSortOrderIndex()
|
|
|
|
let thatSS = a:path.getSortOrderIndex()
|
2008-06-09 08:46:53 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
"compare the sort sequences, if they are different then the return
|
2008-06-09 08:46:53 +08:00
|
|
|
"value is easy
|
2007-11-03 05:23:09 +08:00
|
|
|
if thisSS < thatSS
|
|
|
|
return -1
|
2008-06-09 08:46:53 +08:00
|
|
|
elseif thisSS > thatSS
|
2007-11-03 05:23:09 +08:00
|
|
|
return 1
|
|
|
|
else
|
|
|
|
"if the sort sequences are the same then compare the paths
|
2008-06-09 08:46:53 +08:00
|
|
|
"alphabetically
|
2007-11-03 05:23:09 +08:00
|
|
|
let pathCompare = g:NERDTreeCaseSensitiveSort ? thisPath <# thatPath : thisPath <? thatPath
|
|
|
|
if pathCompare
|
|
|
|
return -1
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.Create(fullpath) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Factory method.
|
|
|
|
"
|
|
|
|
"Creates a path object with the given path. The path is also created on the
|
|
|
|
"filesystem. If the path already exists, a NERDTree.Path.Exists exception is
|
|
|
|
"thrown. If any other errors occur, a NERDTree.Path exception is thrown.
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"fullpath: the full filesystem path to the file/dir to create
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.Create(fullpath)
|
2008-06-09 08:46:53 +08:00
|
|
|
"bail if the a:fullpath already exists
|
2007-11-03 05:23:09 +08:00
|
|
|
if isdirectory(a:fullpath) || filereadable(a:fullpath)
|
|
|
|
throw "NERDTree.Path.Exists Exception: Directory Exists: '" . a:fullpath . "'"
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
try
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"if it ends with a slash, assume its a dir create it
|
2008-05-10 12:26:32 +08:00
|
|
|
if a:fullpath =~ '\(\\\|\/\)$'
|
2008-06-09 08:46:53 +08:00
|
|
|
"whack the trailing slash off the end if it exists
|
2008-05-10 12:26:32 +08:00
|
|
|
let fullpath = substitute(a:fullpath, '\(\\\|\/\)$', '', '')
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
call mkdir(fullpath, 'p')
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"assume its a file and create
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-05-10 12:26:32 +08:00
|
|
|
call writefile([], a:fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
catch /.*/
|
|
|
|
throw "NERDTree.Path Exception: Could not create path: '" . a:fullpath . "'"
|
|
|
|
endtry
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
return s:Path.New(a:fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.copy(dest) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Copies the file/dir represented by this Path to the given location
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"dest: the location to copy this dir/file to
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.copy(dest)
|
|
|
|
if !s:Path.CopyingSupported()
|
2007-11-03 05:23:09 +08:00
|
|
|
throw "NERDTree.Path.CopyingNotSupported Exception: Copying is not supported on this OS"
|
|
|
|
endif
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
let dest = s:Path.WinToUnixPath(a:dest)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let cmd = g:NERDTreeCopyCmd . " " . self.strForOS(0) . " " . dest
|
2007-11-03 05:23:09 +08:00
|
|
|
let success = system(cmd)
|
|
|
|
if success != 0
|
2008-09-03 11:58:19 +08:00
|
|
|
throw "NERDTree.Path Exception: Could not copy ''". self.strForOS(0) ."'' to: '" . a:dest . "'"
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.CopyingSupported() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"returns 1 if copying is supported for this OS
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.CopyingSupported()
|
2007-11-03 05:23:09 +08:00
|
|
|
return exists('g:NERDTreeCopyCmd')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.copyingWillOverwrite(dest) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"returns 1 if copy this path to the given location will cause files to
|
|
|
|
"overwritten
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"dest: the location this path will be copied to
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.copyingWillOverwrite(dest)
|
2007-11-03 05:23:09 +08:00
|
|
|
if filereadable(a:dest)
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
if isdirectory(a:dest)
|
2008-09-03 14:03:56 +08:00
|
|
|
let path = s:Path.JoinPathStrings(a:dest, self.getLastPathComponent(0))
|
2007-11-03 05:23:09 +08:00
|
|
|
if filereadable(path)
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.delete() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Deletes the file represented by this path.
|
|
|
|
"Deletion of directories is not supported
|
|
|
|
"
|
|
|
|
"Throws NERDTree.Path.Deletion exceptions
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.delete()
|
2008-06-09 08:46:53 +08:00
|
|
|
if self.isDirectory
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let cmd = ""
|
|
|
|
if s:running_windows
|
2008-06-09 08:46:53 +08:00
|
|
|
"if we are runnnig windows then put quotes around the pathstring
|
2008-09-03 11:58:19 +08:00
|
|
|
let cmd = g:NERDTreeRemoveDirCmd . self.strForOS(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
let cmd = g:NERDTreeRemoveDirCmd . self.strForOS(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
let success = system(cmd)
|
|
|
|
|
|
|
|
if v:shell_error != 0
|
2008-09-03 11:58:19 +08:00
|
|
|
throw "NERDTree.Path.Deletion Exception: Could not delete directory: '" . self.strForOS(0) . "'"
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
let success = delete(self.strForOS(0))
|
2007-11-03 05:23:09 +08:00
|
|
|
if success != 0
|
2008-09-03 11:58:19 +08:00
|
|
|
throw "NERDTree.Path.Deletion Exception: Could not delete file: '" . self.str(0) . "'"
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endif
|
2008-07-13 10:08:06 +08:00
|
|
|
|
|
|
|
"delete all bookmarks for this path
|
2008-09-03 11:58:19 +08:00
|
|
|
for i in self.bookmarkNames()
|
2008-09-03 14:03:56 +08:00
|
|
|
let bookmark = s:Bookmark.BookmarkFor(i)
|
2008-09-03 11:58:19 +08:00
|
|
|
call bookmark.delete()
|
2008-07-13 10:08:06 +08:00
|
|
|
endfor
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.extractDriveLetter(fullpath) {{{3
|
2008-05-10 08:40:26 +08:00
|
|
|
"
|
|
|
|
"If running windows, cache the drive letter for this path
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.extractDriveLetter(fullpath)
|
2008-05-10 08:40:26 +08:00
|
|
|
if s:running_windows
|
|
|
|
let self.drive = substitute(a:fullpath, '\(^[a-zA-Z]:\).*', '\1', '')
|
|
|
|
else
|
|
|
|
let self.drive = ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.exists() {{{3
|
2008-07-13 12:38:52 +08:00
|
|
|
"return 1 if this path points to a location that is readable or is a directory
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.exists()
|
2008-09-03 11:58:19 +08:00
|
|
|
return filereadable(self.strForOS(0)) || isdirectory(self.strForOS(0))
|
2008-07-13 12:38:52 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.getDir() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Returns this path if it is a directory, else this paths parent.
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a Path object
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.getDir()
|
2007-11-03 05:23:09 +08:00
|
|
|
if self.isDirectory
|
|
|
|
return self
|
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.getParent()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.getParent() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Returns a new path object for this paths parent
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a new Path object
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.getParent()
|
2007-11-03 05:23:09 +08:00
|
|
|
let path = '/'. join(self.pathSegments[0:-2], '/')
|
2008-09-03 14:03:56 +08:00
|
|
|
return s:Path.New(path)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.getLastPathComponent(dirSlash) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
2008-06-09 08:46:53 +08:00
|
|
|
"Gets the last part of this path.
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"dirSlash: if 1 then a trailing slash will be added to the returned value for
|
|
|
|
"directory nodes.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.getLastPathComponent(dirSlash)
|
2007-11-03 05:23:09 +08:00
|
|
|
if empty(self.pathSegments)
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
let toReturn = self.pathSegments[-1]
|
|
|
|
if a:dirSlash && self.isDirectory
|
|
|
|
let toReturn = toReturn . '/'
|
|
|
|
endif
|
|
|
|
return toReturn
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.getPathTrunk() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Gets the path without the last segment on the end.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.getPathTrunk()
|
|
|
|
return s:Path.New(self.strTrunk())
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.getSortOrderIndex() {{{3
|
2008-06-09 08:46:53 +08:00
|
|
|
"returns the index of the pattern in g:NERDTreeSortOrder that this path matches
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.getSortOrderIndex()
|
2007-11-03 05:23:09 +08:00
|
|
|
let i = 0
|
|
|
|
while i < len(g:NERDTreeSortOrder)
|
2008-09-03 11:58:19 +08:00
|
|
|
if self.getLastPathComponent(1) =~ g:NERDTreeSortOrder[i]
|
2007-11-03 05:23:09 +08:00
|
|
|
return i
|
|
|
|
endif
|
|
|
|
let i = i + 1
|
|
|
|
endwhile
|
2008-06-08 14:30:31 +08:00
|
|
|
return s:NERDTreeSortStarIndex
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.ignore() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"returns true if this path should be ignored
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.ignore()
|
2008-09-03 11:58:19 +08:00
|
|
|
let lastPathComponent = self.getLastPathComponent(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"filter out the user specified paths to ignore
|
2008-12-13 14:29:03 +08:00
|
|
|
if b:NERDTreeIgnoreEnabled
|
2007-11-03 05:23:09 +08:00
|
|
|
for i in g:NERDTreeIgnore
|
|
|
|
if lastPathComponent =~ i
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"dont show hidden files unless instructed to
|
2008-12-13 14:29:03 +08:00
|
|
|
if b:NERDTreeShowHidden == 0 && lastPathComponent =~ '^\.'
|
2007-11-03 05:23:09 +08:00
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
if b:NERDTreeShowFiles == 0 && self.isDirectory == 0
|
2007-11-03 05:23:09 +08:00
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.JoinPathStrings(...) {{{3
|
|
|
|
function! s:Path.JoinPathStrings(...)
|
2007-11-03 05:23:09 +08:00
|
|
|
let components = []
|
|
|
|
for i in a:000
|
|
|
|
let components = extend(components, split(i, '/'))
|
|
|
|
endfor
|
|
|
|
return '/' . join(components, '/')
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.equals() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
2008-05-10 11:49:08 +08:00
|
|
|
"Determines whether 2 path objects are "equal".
|
2007-11-03 05:23:09 +08:00
|
|
|
"They are equal if the paths they represent are the same
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"path: the other path obj to compare this with
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.equals(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.str(0) == a:path.str(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.New() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"The Constructor for the Path object
|
|
|
|
"Throws NERDTree.Path.InvalidArguments exception.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.New(fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
let newPath = copy(self)
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
call newPath.readInfoFromDisk(a:fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-07-01 10:23:13 +08:00
|
|
|
let newPath.cachedDisplayString = ""
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
return newPath
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.readInfoFromDisk(fullpath) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"
|
|
|
|
"Throws NERDTree.Path.InvalidArguments exception.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.readInfoFromDisk(fullpath)
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.extractDriveLetter(a:fullpath)
|
2008-05-10 12:26:32 +08:00
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
let fullpath = s:Path.WinToUnixPath(a:fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-07-19 20:50:47 +08:00
|
|
|
if getftype(fullpath) == "fifo"
|
|
|
|
throw "NERDTree.Path.InvalidFiletype Exception: Cant handle FIFO files: " . a:fullpath
|
|
|
|
endif
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.pathSegments = split(fullpath, '/')
|
|
|
|
|
2008-07-19 20:50:47 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isReadOnly = 0
|
2008-05-10 12:26:32 +08:00
|
|
|
if isdirectory(a:fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isDirectory = 1
|
2008-05-10 12:26:32 +08:00
|
|
|
elseif filereadable(a:fullpath)
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isDirectory = 0
|
2008-05-10 12:26:32 +08:00
|
|
|
let self.isReadOnly = filewritable(a:fullpath) == 0
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-05-10 12:26:32 +08:00
|
|
|
throw "NERDTree.Path.InvalidArguments Exception: Invalid path = " . a:fullpath
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-06-21 16:45:18 +08:00
|
|
|
let self.isExecutable = 0
|
|
|
|
if !self.isDirectory
|
|
|
|
let self.isExecutable = getfperm(a:fullpath) =~ 'x'
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"grab the last part of the path (minus the trailing slash)
|
2008-09-03 11:58:19 +08:00
|
|
|
let lastPathComponent = self.getLastPathComponent(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"get the path to the new node with the parent dir fully resolved
|
2008-09-03 11:58:19 +08:00
|
|
|
let hardPath = resolve(self.strTrunk()) . '/' . lastPathComponent
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"if the last part of the path is a symlink then flag it as such
|
2007-11-03 05:23:09 +08:00
|
|
|
let self.isSymLink = (resolve(hardPath) != hardPath)
|
|
|
|
if self.isSymLink
|
|
|
|
let self.symLinkDest = resolve(fullpath)
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"if the link is a dir then slap a / on the end of its dest
|
|
|
|
if isdirectory(self.symLinkDest)
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
"we always wanna treat MS windows shortcuts as files for
|
2008-06-09 08:46:53 +08:00
|
|
|
"simplicity
|
2007-11-03 05:23:09 +08:00
|
|
|
if hardPath !~ '\.lnk$'
|
|
|
|
|
|
|
|
let self.symLinkDest = self.symLinkDest . '/'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.refresh() {{{3
|
|
|
|
function! s:Path.refresh()
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.readInfoFromDisk(self.strForOS(0))
|
|
|
|
call self.cacheDisplayString()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.rename() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Renames this node on the filesystem
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.rename(newPath)
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:newPath == ''
|
|
|
|
throw "NERDTree.Path.InvalidArguments exception. Invalid newPath for renaming = ". a:newPath
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let success = rename(self.strForOS(0), a:newPath)
|
2007-11-03 05:23:09 +08:00
|
|
|
if success != 0
|
2008-09-03 11:58:19 +08:00
|
|
|
throw "NERDTree.Path.Rename Exception: Could not rename: '" . self.strForOS(0) . "'" . 'to:' . a:newPath
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.readInfoFromDisk(a:newPath)
|
2008-07-13 09:43:43 +08:00
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
for i in self.bookmarkNames()
|
2008-09-03 14:03:56 +08:00
|
|
|
let b = s:Bookmark.BookmarkFor(i)
|
2008-09-03 11:58:19 +08:00
|
|
|
call b.setPath(copy(self))
|
2008-07-13 09:43:43 +08:00
|
|
|
endfor
|
2008-09-03 14:03:56 +08:00
|
|
|
call s:Bookmark.Write()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.str(esc) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Gets the actual string path that this obj represents.
|
|
|
|
"
|
|
|
|
"Args:
|
2008-06-09 08:46:53 +08:00
|
|
|
"esc: if 1 then all the tricky chars in the returned string will be escaped
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.str(esc)
|
2007-11-03 05:23:09 +08:00
|
|
|
let toReturn = '/' . join(self.pathSegments, '/')
|
|
|
|
if self.isDirectory && toReturn != '/'
|
|
|
|
let toReturn = toReturn . '/'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if a:esc
|
|
|
|
let toReturn = escape(toReturn, s:escape_chars)
|
|
|
|
endif
|
|
|
|
return toReturn
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strAbs() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Returns a string representing this path with all the symlinks resolved
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"string
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.strAbs()
|
2008-09-03 11:58:19 +08:00
|
|
|
return resolve(self.str(1))
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strForCd() {{{3
|
2008-05-10 11:25:33 +08:00
|
|
|
"
|
|
|
|
" returns a string that can be used with :cd
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a string that can be used in the view to represent this path
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.strForCd()
|
2008-05-10 11:25:33 +08:00
|
|
|
if s:running_windows
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.strForOS(0)
|
2008-05-10 11:25:33 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
return self.strForOS(1)
|
2008-05-10 11:25:33 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strDisplay() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Returns a string that specifies how the path should be represented as a
|
|
|
|
"string
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"a string that can be used in the view to represent this path
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.strDisplay()
|
2008-07-01 10:23:13 +08:00
|
|
|
if self.cachedDisplayString == ""
|
2008-09-03 11:58:19 +08:00
|
|
|
call self.cacheDisplayString()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-07-01 10:23:13 +08:00
|
|
|
return self.cachedDisplayString
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strForEditCmd() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Return: the string for this path that is suitable to be used with the :edit
|
|
|
|
"command
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.strForEditCmd()
|
2008-11-30 15:05:54 +08:00
|
|
|
let p = self.str(1)
|
|
|
|
let cwd = getcwd()
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
if s:running_windows
|
2008-11-30 15:05:54 +08:00
|
|
|
let p = tolower(self.strForOS(0))
|
|
|
|
let cwd = tolower(getcwd())
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-11-30 15:05:54 +08:00
|
|
|
"return a relative path if we can
|
|
|
|
if stridx(p, cwd) == 0
|
|
|
|
let p = strpart(p, strlen(cwd)+1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
return p
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strForGlob() {{{3
|
|
|
|
function! s:Path.strForGlob()
|
2008-05-04 17:33:52 +08:00
|
|
|
let lead = s:os_slash
|
|
|
|
|
|
|
|
"if we are running windows then slap a drive letter on the front
|
|
|
|
if s:running_windows
|
2008-05-10 12:26:32 +08:00
|
|
|
let lead = self.drive . '\'
|
2008-05-04 17:33:52 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
let toReturn = lead . join(self.pathSegments, s:os_slash)
|
|
|
|
|
|
|
|
if !s:running_windows
|
|
|
|
let toReturn = escape(toReturn, s:escape_chars)
|
|
|
|
endif
|
|
|
|
return toReturn
|
|
|
|
endfunction
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strForOS(esc) {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Gets the string path for this path object that is appropriate for the OS.
|
|
|
|
"EG, in windows c:\foo\bar
|
|
|
|
" in *nix /foo/bar
|
|
|
|
"
|
2008-06-09 08:46:53 +08:00
|
|
|
"Args:
|
2007-11-03 05:23:09 +08:00
|
|
|
"esc: if 1 then all the tricky chars in the returned string will be
|
|
|
|
" escaped. If we are running windows then the str is double quoted instead.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.strForOS(esc)
|
2007-11-03 05:23:09 +08:00
|
|
|
let lead = s:os_slash
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"if we are running windows then slap a drive letter on the front
|
2007-11-03 05:23:09 +08:00
|
|
|
if s:running_windows
|
2008-05-10 12:26:32 +08:00
|
|
|
let lead = self.drive . '\'
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
let toReturn = lead . join(self.pathSegments, s:os_slash)
|
|
|
|
|
|
|
|
if a:esc
|
|
|
|
if s:running_windows
|
|
|
|
let toReturn = '"' . toReturn . '"'
|
|
|
|
else
|
|
|
|
let toReturn = escape(toReturn, s:escape_chars)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return toReturn
|
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.strTrunk() {{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Gets the path without the last segment on the end.
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.strTrunk()
|
2008-05-10 12:26:32 +08:00
|
|
|
return self.drive . '/' . join(self.pathSegments[0:-2], '/')
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
"FUNCTION: Path.WinToUnixPath(pathstr){{{3
|
2007-11-03 05:23:09 +08:00
|
|
|
"Takes in a windows path and returns the unix equiv
|
|
|
|
"
|
|
|
|
"A class level method
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"pathstr: the windows path to convert
|
2008-09-03 14:03:56 +08:00
|
|
|
function! s:Path.WinToUnixPath(pathstr)
|
2007-11-03 05:23:09 +08:00
|
|
|
if !s:running_windows
|
|
|
|
return a:pathstr
|
|
|
|
endif
|
|
|
|
|
|
|
|
let toReturn = a:pathstr
|
|
|
|
|
|
|
|
"remove the x:\ of the front
|
|
|
|
let toReturn = substitute(toReturn, '^.*:\(\\\|/\)\?', '/', "")
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"convert all \ chars to /
|
2007-11-03 05:23:09 +08:00
|
|
|
let toReturn = substitute(toReturn, '\', '/', "g")
|
|
|
|
|
|
|
|
return toReturn
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" SECTION: General Functions {{{1
|
|
|
|
"============================================================
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:bufInWindows(bnum){{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"[[STOLEN FROM VTREEEXPLORER.VIM]]
|
2008-06-09 08:46:53 +08:00
|
|
|
"Determine the number of windows open to this buffer number.
|
|
|
|
"Care of Yegappan Lakshman. Thanks!
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"bnum: the subject buffers buffer number
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:bufInWindows(bnum)
|
2007-11-03 05:23:09 +08:00
|
|
|
let cnt = 0
|
|
|
|
let winnum = 1
|
|
|
|
while 1
|
|
|
|
let bufnum = winbufnr(winnum)
|
|
|
|
if bufnum < 0
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
if bufnum == a:bnum
|
|
|
|
let cnt = cnt + 1
|
|
|
|
endif
|
|
|
|
let winnum = winnum + 1
|
|
|
|
endwhile
|
|
|
|
|
|
|
|
return cnt
|
|
|
|
endfunction " >>>
|
2008-12-17 15:55:50 +08:00
|
|
|
"FUNCTION: s:checkForBrowse(dir) {{{2
|
|
|
|
"inits a secondary nerd tree in the current buffer if appropriate
|
|
|
|
function! s:checkForBrowse(dir)
|
|
|
|
if !exists("b:NERDTreeProcessed") && a:dir != '' && isdirectory(a:dir)
|
|
|
|
let b:NERDTreeProcessed = 1
|
|
|
|
call s:initNerdTreeInPlace(a:dir)
|
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:compareBookmarks(first, second) {{{2
|
2008-06-30 05:36:50 +08:00
|
|
|
"Compares two bookmarks
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:compareBookmarks(first, second)
|
2008-09-03 11:58:19 +08:00
|
|
|
return a:first.compareTo(a:second)
|
2008-06-30 05:36:50 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:completeBookmarks(A,L,P) {{{2
|
2008-06-28 20:23:02 +08:00
|
|
|
" completion function for the bookmark commands
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:completeBookmarks(A,L,P)
|
2008-09-03 14:03:56 +08:00
|
|
|
return filter(s:Bookmark.BookmarkNames(), 'v:val =~ "^' . a:A . '"')
|
2008-06-07 08:45:21 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:initNerdTree(name) {{{2
|
2008-06-09 14:20:22 +08:00
|
|
|
"Initialise the nerd tree for this tab. The tree will start in either the
|
2008-06-12 17:14:07 +08:00
|
|
|
"given directory, or the directory associated with the given bookmark
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
2008-06-09 14:20:22 +08:00
|
|
|
"Args:
|
2008-06-12 17:14:07 +08:00
|
|
|
"name: the name of a bookmark or a directory
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:initNerdTree(name)
|
2008-06-09 14:20:22 +08:00
|
|
|
let path = {}
|
2008-09-03 14:03:56 +08:00
|
|
|
if s:Bookmark.BookmarkExistsFor(a:name)
|
|
|
|
let path = s:Bookmark.BookmarkFor(a:name).path
|
2008-06-09 14:20:22 +08:00
|
|
|
else
|
2008-11-28 19:06:59 +08:00
|
|
|
let dir = a:name == '' ? getcwd() : a:name
|
2008-11-28 19:07:23 +08:00
|
|
|
|
2008-11-28 19:11:23 +08:00
|
|
|
"hack to get an absolute path if a relative path is given
|
2008-11-28 19:07:23 +08:00
|
|
|
if dir =~ '^\.'
|
|
|
|
let dir = getcwd() . s:os_slash . dir
|
|
|
|
endif
|
2008-06-09 14:20:22 +08:00
|
|
|
let dir = resolve(dir)
|
2008-11-28 19:06:59 +08:00
|
|
|
|
2008-06-09 14:20:22 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let path = s:Path.New(dir)
|
2008-06-09 14:20:22 +08:00
|
|
|
catch /NERDTree.Path.InvalidArguments/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("No bookmark or directory found for: " . a:name)
|
2008-06-09 14:20:22 +08:00
|
|
|
return
|
|
|
|
endtry
|
2008-06-13 09:01:05 +08:00
|
|
|
endif
|
|
|
|
if !path.isDirectory
|
2008-09-03 11:58:19 +08:00
|
|
|
let path = path.getParent()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
"if instructed to, then change the vim CWD to the dir the NERDTree is
|
2008-06-09 08:46:53 +08:00
|
|
|
"inited in
|
2007-11-03 05:23:09 +08:00
|
|
|
if g:NERDTreeChDirMode != 0
|
2008-09-03 11:58:19 +08:00
|
|
|
exec 'cd ' . path.strForCd()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
if s:treeExistsForTab()
|
|
|
|
if s:isTreeOpen()
|
|
|
|
call s:closeTree()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-12-14 18:01:50 +08:00
|
|
|
unlet t:NERDTreeBufName
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
let newRoot = s:TreeDirNode.New(path)
|
|
|
|
call newRoot.open()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:createTreeWin()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:treeShowHelp = 0
|
|
|
|
let b:NERDTreeIgnoreEnabled = 1
|
|
|
|
let b:NERDTreeShowFiles = g:NERDTreeShowFiles
|
|
|
|
let b:NERDTreeShowHidden = g:NERDTreeShowHidden
|
|
|
|
let b:NERDTreeShowBookmarks = g:NERDTreeShowBookmarks
|
|
|
|
let b:NERDTreeRoot = newRoot
|
|
|
|
|
2008-12-13 14:32:35 +08:00
|
|
|
let b:NERDTreeType = "primary"
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2008-12-13 14:29:03 +08:00
|
|
|
call s:putCursorOnNode(b:NERDTreeRoot, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-12-13 14:29:03 +08:00
|
|
|
|
2008-12-13 14:32:35 +08:00
|
|
|
"FUNCTION: s:initNerdTreeInPlace(name) {{{2
|
|
|
|
function! s:initNerdTreeInPlace(dir)
|
|
|
|
try
|
|
|
|
let path = s:Path.New(a:dir)
|
|
|
|
catch /NERDTree.Path.InvalidArguments/
|
|
|
|
call s:echo("Invalid directory name:" . a:name)
|
|
|
|
return
|
|
|
|
endtry
|
|
|
|
let b:NERDTreeRoot = s:TreeDirNode.New(path)
|
|
|
|
call b:NERDTreeRoot.open()
|
|
|
|
|
|
|
|
"throwaway buffer options
|
|
|
|
setlocal noswapfile
|
|
|
|
setlocal buftype=nofile
|
|
|
|
setlocal bufhidden=delete
|
|
|
|
setlocal nowrap
|
|
|
|
setlocal foldcolumn=0
|
|
|
|
setlocal nobuflisted
|
|
|
|
setlocal nospell
|
|
|
|
if g:NERDTreeShowLineNumbers
|
|
|
|
setlocal nu
|
|
|
|
else
|
|
|
|
setlocal nonu
|
|
|
|
endif
|
|
|
|
|
|
|
|
iabc <buffer>
|
|
|
|
|
|
|
|
if g:NERDTreeHighlightCursorline
|
|
|
|
setlocal cursorline
|
|
|
|
endif
|
|
|
|
|
|
|
|
let b:treeShowHelp = 0
|
|
|
|
let b:NERDTreeIgnoreEnabled = 1
|
|
|
|
let b:NERDTreeShowFiles = g:NERDTreeShowFiles
|
|
|
|
let b:NERDTreeShowHidden = g:NERDTreeShowHidden
|
|
|
|
let b:NERDTreeShowBookmarks = g:NERDTreeShowBookmarks
|
|
|
|
|
|
|
|
let b:NERDTreeType = "secondary"
|
|
|
|
|
|
|
|
call s:bindMappings()
|
|
|
|
setfiletype nerdtree
|
|
|
|
" syntax highlighting
|
|
|
|
if has("syntax") && exists("g:syntax_on") && !has("syntax_items")
|
|
|
|
call s:setupSyntaxHighlighting()
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:renderView()
|
|
|
|
endfunction
|
2008-12-13 19:40:17 +08:00
|
|
|
" Function: s:treeExistsForBuffer() {{{2
|
|
|
|
" Returns 1 if a nerd tree root exists in the current buffer
|
|
|
|
function! s:treeExistsForBuf()
|
|
|
|
return exists("b:NERDTreeRoot")
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" Function: s:treeExistsForTab() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" Returns 1 if a nerd tree root exists in the current tab
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:treeExistsForTab()
|
2008-12-13 14:29:03 +08:00
|
|
|
return exists("t:NERDTreeBufName")
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
" SECTION: Public Functions {{{1
|
|
|
|
"============================================================
|
|
|
|
"Returns the node that the cursor is currently on.
|
|
|
|
"
|
|
|
|
"If the cursor is not in the NERDTree window, it is temporarily put there.
|
|
|
|
"
|
|
|
|
"If no NERD tree window exists for the current tab, a NERDTree.NoTreeForTab
|
|
|
|
"exception is thrown.
|
|
|
|
"
|
|
|
|
"If the cursor is not on a node then an empty dictionary {} is returned.
|
|
|
|
function! NERDTreeGetCurrentNode()
|
2008-09-05 10:34:50 +08:00
|
|
|
if !s:treeExistsForTab() || !s:isTreeOpen()
|
2007-11-03 05:23:09 +08:00
|
|
|
throw "NERDTree.NoTreeForTab exception: there is no NERD tree open for the current tab"
|
|
|
|
endif
|
2008-06-09 08:46:53 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
let winnr = winnr()
|
2008-09-05 10:34:50 +08:00
|
|
|
if winnr != s:getTreeWinNum()
|
|
|
|
call s:putCursorInTreeWin()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
let treenode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if winnr != winnr()
|
|
|
|
wincmd w
|
|
|
|
endif
|
|
|
|
|
|
|
|
return treenode
|
|
|
|
endfunction
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"Returns the path object for the current node.
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Subject to the same conditions as NERDTreeGetCurrentNode
|
|
|
|
function! NERDTreeGetCurrentPath()
|
|
|
|
let node = NERDTreeGetCurrentNode()
|
|
|
|
if node != {}
|
|
|
|
return node.path
|
|
|
|
else
|
|
|
|
return {}
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" SECTION: View Functions {{{1
|
|
|
|
"============================================================
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:centerView() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"centers the nerd tree window around the cursor (provided the nerd tree
|
|
|
|
"options permit)
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
if g:NERDTreeAutoCenter
|
|
|
|
let current_line = winline()
|
|
|
|
let lines_to_top = current_line
|
2008-09-05 10:34:50 +08:00
|
|
|
let lines_to_bottom = winheight(s:getTreeWinNum()) - current_line
|
2007-11-03 05:23:09 +08:00
|
|
|
if lines_to_top < g:NERDTreeAutoCenterThreshold || lines_to_bottom < g:NERDTreeAutoCenterThreshold
|
|
|
|
normal! zz
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:closeTree() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Closes the NERD tree window
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:closeTree()
|
|
|
|
if !s:isTreeOpen()
|
|
|
|
throw "NERDTree.view.closeTree exception: no NERDTree is open"
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
if winnr("$") != 1
|
2008-09-05 10:34:50 +08:00
|
|
|
execute s:getTreeWinNum() . " wincmd w"
|
2007-11-03 05:23:09 +08:00
|
|
|
close
|
|
|
|
execute "wincmd p"
|
|
|
|
else
|
|
|
|
:q
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:closeTreeIfOpen() {{{2
|
2008-07-11 17:17:29 +08:00
|
|
|
"Closes the NERD tree window if it is open
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:closeTreeIfOpen()
|
|
|
|
if s:isTreeOpen()
|
|
|
|
call s:closeTree()
|
2008-07-11 17:17:29 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:closeTreeIfQuitOnOpen() {{{2
|
2008-07-11 17:17:29 +08:00
|
|
|
"Closes the NERD tree window if the close on open option is set
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:closeTreeIfQuitOnOpen()
|
2008-07-11 17:17:29 +08:00
|
|
|
if g:NERDTreeQuitOnOpen
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:closeTree()
|
2008-07-11 17:17:29 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:createTreeWin() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Inits the NERD tree window. ie. opens it, sizes it, sets all the local
|
|
|
|
"options etc
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:createTreeWin()
|
2008-06-09 08:46:53 +08:00
|
|
|
"create the nerd tree window
|
2008-06-29 15:43:50 +08:00
|
|
|
let splitLocation = (g:NERDTreeWinPos == "top" || g:NERDTreeWinPos == "left") ? "topleft " : "botright "
|
2008-09-05 10:34:50 +08:00
|
|
|
let splitMode = s:shouldSplitVertically() ? "vertical " : ""
|
2008-06-09 08:46:53 +08:00
|
|
|
let splitSize = g:NERDTreeWinSize
|
2008-12-13 14:29:03 +08:00
|
|
|
if !exists('t:NERDTreeBufName')
|
|
|
|
let t:NERDTreeBufName = localtime() . s:NERDTreeBufName
|
|
|
|
endif
|
|
|
|
let cmd = splitLocation . splitMode . splitSize . ' new ' . t:NERDTreeBufName
|
2007-11-03 05:23:09 +08:00
|
|
|
silent! execute cmd
|
|
|
|
|
|
|
|
setlocal winfixwidth
|
|
|
|
|
|
|
|
"throwaway buffer options
|
|
|
|
setlocal noswapfile
|
|
|
|
setlocal buftype=nofile
|
2008-12-13 14:29:03 +08:00
|
|
|
"setlocal bufhidden=delete
|
2007-11-03 05:23:09 +08:00
|
|
|
setlocal nowrap
|
|
|
|
setlocal foldcolumn=0
|
|
|
|
setlocal nobuflisted
|
|
|
|
setlocal nospell
|
2008-03-10 15:39:30 +08:00
|
|
|
if g:NERDTreeShowLineNumbers
|
|
|
|
setlocal nu
|
|
|
|
else
|
|
|
|
setlocal nonu
|
|
|
|
endif
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
iabc <buffer>
|
|
|
|
|
|
|
|
if g:NERDTreeHighlightCursorline
|
|
|
|
setlocal cursorline
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:bindMappings()
|
2008-05-17 10:40:27 +08:00
|
|
|
setfiletype nerdtree
|
|
|
|
" syntax highlighting
|
|
|
|
if has("syntax") && exists("g:syntax_on") && !has("syntax_items")
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:setupSyntaxHighlighting()
|
2008-05-17 10:40:27 +08:00
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:drawTree {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Draws the given node recursively
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"curNode: the node that is being rendered with this call
|
|
|
|
"depth: the current depth in the tree for this call
|
|
|
|
"drawText: 1 if we should actually draw the line for this node (if 0 then the
|
|
|
|
"child nodes are rendered only)
|
|
|
|
"vertMap: a binary array that indicates whether a vertical bar should be draw
|
|
|
|
"for each depth in the tree
|
|
|
|
"isLastChild:true if this curNode is the last child of its parent
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:drawTree(curNode, depth, drawText, vertMap, isLastChild)
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:drawText == 1
|
|
|
|
|
|
|
|
let treeParts = ''
|
|
|
|
|
|
|
|
"get all the leading spaces and vertical tree parts for this line
|
|
|
|
if a:depth > 1
|
|
|
|
for j in a:vertMap[0:-2]
|
|
|
|
if j == 1
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . '| '
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . ' '
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
|
|
|
|
"get the last vertical tree part for this line which will be different
|
|
|
|
"if this node is the last child of its parent
|
|
|
|
if a:isLastChild
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . '`'
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . '|'
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
"smack the appropriate dir/file symbol on the line before the file/dir
|
|
|
|
"name itself
|
|
|
|
if a:curNode.path.isDirectory
|
|
|
|
if a:curNode.isOpen
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . '~'
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . '+'
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
else
|
2008-06-23 14:56:55 +08:00
|
|
|
let treeParts = treeParts . '-'
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-09-03 11:58:19 +08:00
|
|
|
let line = treeParts . a:curNode.strDisplay()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
call setline(line(".")+1, line)
|
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"if the node is an open dir, draw its children
|
|
|
|
if a:curNode.path.isDirectory == 1 && a:curNode.isOpen == 1
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let childNodesToDraw = a:curNode.getVisibleChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
if len(childNodesToDraw) > 0
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"draw all the nodes children except the last
|
2007-11-03 05:23:09 +08:00
|
|
|
let lastIndx = len(childNodesToDraw)-1
|
|
|
|
if lastIndx > 0
|
|
|
|
for i in childNodesToDraw[0:lastIndx-1]
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:drawTree(i, a:depth + 1, 1, add(copy(a:vertMap), 1), 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"draw the last child, indicating that it IS the last
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:drawTree(childNodesToDraw[lastIndx], a:depth + 1, 1, add(copy(a:vertMap), 0), 1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:dumpHelp {{{2
|
2008-06-09 08:46:53 +08:00
|
|
|
"prints out the quick help
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:dumpHelp()
|
2007-11-03 05:23:09 +08:00
|
|
|
let old_h = @h
|
2008-12-13 14:29:03 +08:00
|
|
|
if b:treeShowHelp == 1
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h= "\" NERD tree (" . s:NERD_tree_version . ") quickhelp~\n"
|
|
|
|
let @h=@h."\" ============================\n"
|
|
|
|
let @h=@h."\" File node mappings~\n"
|
|
|
|
let @h=@h."\" ". (g:NERDTreeMouseMode == 3 ? "single" : "double") ."-click,\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapActivateNode .": open in prev window\n"
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapPreview .": preview\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenInTab.": open in new tab\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenInTabSilent .": open in new tab silently\n"
|
|
|
|
let @h=@h."\" middle-click,\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenSplit .": open split\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapPreviewSplit .": preview split\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapExecute.": Execute file\n"
|
|
|
|
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" Directory node mappings~\n"
|
|
|
|
let @h=@h."\" ". (g:NERDTreeMouseMode == 1 ? "double" : "single") ."-click,\n"
|
2008-06-12 18:53:45 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapActivateNode .": open & close node\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenRecursively .": recursively open node\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapCloseDir .": close parent of node\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapCloseChildren .": close all child nodes of\n"
|
|
|
|
let @h=@h."\" current node recursively\n"
|
|
|
|
let @h=@h."\" middle-click,\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenExpl.": Open netrw for selected\n"
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\" node\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-29 08:42:52 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
|
|
|
let @h=@h."\" Bookmark table mappings~\n"
|
|
|
|
let @h=@h."\" double-click,\n"
|
2008-06-29 09:52:04 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapActivateNode .": open bookmark\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenInTab.": open in new tab\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapOpenInTabSilent .": open in new tab silently\n"
|
2008-08-31 16:55:24 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapDeleteBookmark .": delete bookmark\n"
|
2008-06-29 08:42:52 +08:00
|
|
|
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" Tree navigation mappings~\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapJumpRoot .": go to root\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapJumpParent .": go to parent\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapJumpFirstChild .": go to first child\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapJumpLastChild .": go to last child\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapJumpNextSibling .": go to next sibling\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapJumpPrevSibling .": go to prev sibling\n"
|
|
|
|
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" Filesystem mappings~\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapChangeRoot .": change tree root to the\n"
|
|
|
|
let @h=@h."\" selected dir\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapUpdir .": move tree root up a dir\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapUpdirKeepOpen .": move tree root up a dir\n"
|
|
|
|
let @h=@h."\" but leave old root open\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapRefresh .": refresh cursor dir\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapRefreshRoot .": refresh current root\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapFilesystemMenu .": Show filesystem menu\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapChdir .":change the CWD to the\n"
|
|
|
|
let @h=@h."\" selected dir\n"
|
|
|
|
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" Tree filtering mappings~\n"
|
2008-12-13 14:29:03 +08:00
|
|
|
let @h=@h."\" ". g:NERDTreeMapToggleHidden .": hidden files (" . (b:NERDTreeShowHidden ? "on" : "off") . ")\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapToggleFilters .": file filters (" . (b:NERDTreeIgnoreEnabled ? "on" : "off") . ")\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapToggleFiles .": files (" . (b:NERDTreeShowFiles ? "on" : "off") . ")\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapToggleBookmarks .": bookmarks (" . (b:NERDTreeShowBookmarks ? "on" : "off") . ")\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
let @h=@h."\" Other mappings~\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapQuit .": Close the NERDTree window\n"
|
|
|
|
let @h=@h."\" ". g:NERDTreeMapHelp .": toggle help\n"
|
2008-06-21 20:47:12 +08:00
|
|
|
let @h=@h."\"\n\" ----------------------------\n"
|
2008-06-12 17:14:07 +08:00
|
|
|
let @h=@h."\" Bookmark commands~\n"
|
|
|
|
let @h=@h."\" :Bookmark <name>\n"
|
2008-06-12 18:35:17 +08:00
|
|
|
let @h=@h."\" :BookmarkToRoot <name>\n"
|
|
|
|
let @h=@h."\" :RevealBookmark <name>\n"
|
|
|
|
let @h=@h."\" :OpenBookmark <name>\n"
|
|
|
|
let @h=@h."\" :ClearBookmarks [<names>]\n"
|
2008-06-12 17:14:07 +08:00
|
|
|
let @h=@h."\" :ClearAllBookmarks\n"
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
|
|
|
let @h="\" Press ". g:NERDTreeMapHelp ." for help\n"
|
|
|
|
endif
|
|
|
|
|
|
|
|
silent! put h
|
|
|
|
|
|
|
|
let @h = old_h
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:echo {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"A wrapper for :echo. Appends 'NERDTree:' on the front of all messages
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"msg: the message to echo
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:echo(msg)
|
2007-11-03 05:23:09 +08:00
|
|
|
redraw
|
2008-06-19 17:37:31 +08:00
|
|
|
echomsg "NERDTree: " . a:msg
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:echoWarning {{{2
|
|
|
|
"Wrapper for s:echo, sets the message type to warningmsg for this message
|
2008-06-09 08:46:53 +08:00
|
|
|
"Args:
|
2007-11-03 05:23:09 +08:00
|
|
|
"msg: the message to echo
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:echoWarning(msg)
|
2007-11-03 05:23:09 +08:00
|
|
|
echohl warningmsg
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo(a:msg)
|
2007-11-03 05:23:09 +08:00
|
|
|
echohl normal
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:echoError {{{2
|
|
|
|
"Wrapper for s:echo, sets the message type to errormsg for this message
|
2008-06-09 08:46:53 +08:00
|
|
|
"Args:
|
2007-11-03 05:23:09 +08:00
|
|
|
"msg: the message to echo
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:echoError(msg)
|
2007-11-03 05:23:09 +08:00
|
|
|
echohl errormsg
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo(a:msg)
|
2007-11-03 05:23:09 +08:00
|
|
|
echohl normal
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:findNodeLineNumber(treenode){{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Finds the line number for the given tree node
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"treenode: the node to find the line no. for
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:findNodeLineNumber(treenode)
|
2008-06-09 08:46:53 +08:00
|
|
|
"if the node is the root then return the root line no.
|
2008-09-03 11:58:19 +08:00
|
|
|
if a:treenode.isRoot()
|
2008-09-05 10:34:50 +08:00
|
|
|
return s:findRootNodeLineNumber()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
let totalLines = line("$")
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"the path components we have matched so far
|
2008-12-13 14:29:03 +08:00
|
|
|
let pathcomponents = [substitute(b:NERDTreeRoot.path.str(0), '/ *$', '', '')]
|
2008-06-09 08:46:53 +08:00
|
|
|
"the index of the component we are searching for
|
2007-11-03 05:23:09 +08:00
|
|
|
let curPathComponent = 1
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
let fullpath = a:treenode.path.str(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
let lnum = s:findRootNodeLineNumber()
|
2007-11-03 05:23:09 +08:00
|
|
|
while lnum > 0
|
|
|
|
let lnum = lnum + 1
|
2008-06-09 08:46:53 +08:00
|
|
|
"have we reached the bottom of the tree?
|
2007-11-03 05:23:09 +08:00
|
|
|
if lnum == totalLines+1
|
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
|
|
|
|
let curLine = getline(lnum)
|
|
|
|
|
2008-10-19 18:06:09 +08:00
|
|
|
let indent = s:indentLevelFor(curLine)
|
2007-11-03 05:23:09 +08:00
|
|
|
if indent == curPathComponent
|
2008-09-05 10:34:50 +08:00
|
|
|
let curLine = s:stripMarkupFromLine(curLine, 1)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let curPath = join(pathcomponents, '/') . '/' . curLine
|
2008-06-09 08:46:53 +08:00
|
|
|
if stridx(fullpath, curPath, 0) == 0
|
2007-11-03 05:23:09 +08:00
|
|
|
if fullpath == curPath || strpart(fullpath, len(curPath)-1,1) == '/'
|
|
|
|
let curLine = substitute(curLine, '/ *$', '', '')
|
|
|
|
call add(pathcomponents, curLine)
|
|
|
|
let curPathComponent = curPathComponent + 1
|
|
|
|
|
|
|
|
if fullpath == curPath
|
|
|
|
return lnum
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endwhile
|
|
|
|
return -1
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:findRootNodeLineNumber(){{{2
|
2008-06-09 08:46:53 +08:00
|
|
|
"Finds the line number of the root node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:findRootNodeLineNumber()
|
2007-11-03 05:23:09 +08:00
|
|
|
let rootLine = 1
|
|
|
|
while getline(rootLine) !~ '^/'
|
|
|
|
let rootLine = rootLine + 1
|
|
|
|
endwhile
|
|
|
|
return rootLine
|
|
|
|
endfunction
|
|
|
|
|
2008-10-27 18:21:39 +08:00
|
|
|
"FUNCTION: s:firstNormalWindow(){{{2
|
|
|
|
"find the window number of the first normal window
|
|
|
|
function! s:firstNormalWindow()
|
|
|
|
let i = 1
|
|
|
|
while i <= winnr("$")
|
|
|
|
let bnum = winbufnr(i)
|
|
|
|
if bnum != -1 && getbufvar(bnum, '&buftype') == ''
|
|
|
|
\ && !getwinvar(i, '&previewwindow')
|
|
|
|
return i
|
|
|
|
endif
|
|
|
|
|
|
|
|
let i += 1
|
|
|
|
endwhile
|
|
|
|
return -1
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:getPath(ln) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Gets the full path to the node that is rendered on the given line number
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"ln: the line number to get the path for
|
|
|
|
"
|
|
|
|
"Return:
|
|
|
|
"A path if a node was selected, {} if nothing is selected.
|
|
|
|
"If the 'up a dir' line was selected then the path to the parent of the
|
|
|
|
"current root is returned
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:getPath(ln)
|
2007-11-03 05:23:09 +08:00
|
|
|
let line = getline(a:ln)
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"check to see if we have the root node
|
2007-11-03 05:23:09 +08:00
|
|
|
if line =~ '^\/'
|
2008-12-13 14:29:03 +08:00
|
|
|
return b:NERDTreeRoot.path
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
" in case called from outside the tree
|
|
|
|
if line !~ '^ *[|`]' || line =~ '^$'
|
|
|
|
return {}
|
|
|
|
endif
|
|
|
|
|
|
|
|
if line == s:tree_up_dir_line
|
2008-12-13 14:29:03 +08:00
|
|
|
return b:NERDTreeRoot.path.getParent()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-10-19 18:06:09 +08:00
|
|
|
let indent = s:indentLevelFor(line)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"remove the tree parts and the leading space
|
2008-09-05 10:34:50 +08:00
|
|
|
let curFile = s:stripMarkupFromLine(line, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let wasdir = 0
|
2008-06-09 08:46:53 +08:00
|
|
|
if curFile =~ '/$'
|
2007-11-03 05:23:09 +08:00
|
|
|
let wasdir = 1
|
2008-06-09 17:23:43 +08:00
|
|
|
let curFile = substitute(curFile, '/\?$', '/', "")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
let dir = ""
|
|
|
|
let lnum = a:ln
|
|
|
|
while lnum > 0
|
|
|
|
let lnum = lnum - 1
|
|
|
|
let curLine = getline(lnum)
|
2008-09-05 10:34:50 +08:00
|
|
|
let curLineStripped = s:stripMarkupFromLine(curLine, 1)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"have we reached the top of the tree?
|
2007-11-03 05:23:09 +08:00
|
|
|
if curLine =~ '^/'
|
2008-06-09 17:23:43 +08:00
|
|
|
let dir = substitute (curLine, ' *$', "", "") . dir
|
2007-11-03 05:23:09 +08:00
|
|
|
break
|
|
|
|
endif
|
2008-06-09 17:23:43 +08:00
|
|
|
if curLineStripped =~ '/$'
|
2008-10-19 18:06:09 +08:00
|
|
|
let lpindent = s:indentLevelFor(curLine)
|
2007-11-03 05:23:09 +08:00
|
|
|
if lpindent < indent
|
|
|
|
let indent = indent - 1
|
|
|
|
|
2008-06-09 17:23:43 +08:00
|
|
|
let dir = substitute (curLineStripped,'^\\', "", "") . dir
|
2007-11-03 05:23:09 +08:00
|
|
|
continue
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endwhile
|
2008-12-13 14:29:03 +08:00
|
|
|
let curFile = b:NERDTreeRoot.path.drive . dir . curFile
|
2008-09-03 14:03:56 +08:00
|
|
|
let toReturn = s:Path.New(curFile)
|
2008-05-10 14:29:20 +08:00
|
|
|
return toReturn
|
2008-06-09 08:46:53 +08:00
|
|
|
endfunction
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:getSelectedBookmark() {{{2
|
2008-08-31 16:58:08 +08:00
|
|
|
"returns the bookmark the cursor is over in the bookmarks table or {}
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:getSelectedBookmark()
|
2008-06-28 16:43:33 +08:00
|
|
|
let line = getline(".")
|
2008-08-31 16:57:37 +08:00
|
|
|
let name = substitute(line, '^>\(.\{-}\) .\+$', '\1', '')
|
2008-06-28 16:43:33 +08:00
|
|
|
if name != line
|
2008-07-13 17:02:59 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
return s:Bookmark.BookmarkFor(name)
|
2008-07-13 17:02:59 +08:00
|
|
|
catch /NERDTree.BookmarkNotFound/
|
|
|
|
return {}
|
|
|
|
endtry
|
2008-06-28 16:43:33 +08:00
|
|
|
endif
|
2008-08-31 16:56:13 +08:00
|
|
|
return {}
|
2008-06-28 16:43:33 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:getSelectedDir() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Returns the current node if it is a dir node, or else returns the current
|
|
|
|
"nodes parent
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:getSelectedDir()
|
|
|
|
let currentDir = s:getSelectedNode()
|
2008-09-03 11:58:19 +08:00
|
|
|
if currentDir != {} && !currentDir.isRoot()
|
2007-11-03 05:23:09 +08:00
|
|
|
if currentDir.path.isDirectory == 0
|
|
|
|
let currentDir = currentDir.parent
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return currentDir
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:getSelectedNode() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"gets the treenode that the cursor is currently over
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:getSelectedNode()
|
2008-06-09 08:46:53 +08:00
|
|
|
try
|
2008-09-05 10:34:50 +08:00
|
|
|
let path = s:getPath(line("."))
|
2007-11-03 05:23:09 +08:00
|
|
|
if path == {}
|
|
|
|
return {}
|
|
|
|
endif
|
2008-12-13 14:29:03 +08:00
|
|
|
return b:NERDTreeRoot.findNode(path)
|
2007-11-03 05:23:09 +08:00
|
|
|
catch /^NERDTree/
|
|
|
|
return {}
|
|
|
|
endtry
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:getTreeWinNum() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"gets the nerd tree window number for this tab
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:getTreeWinNum()
|
2008-12-13 14:29:03 +08:00
|
|
|
if exists("t:NERDTreeBufName")
|
|
|
|
return bufwinnr(t:NERDTreeBufName)
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
endfunction
|
2008-10-19 18:06:09 +08:00
|
|
|
"FUNCTION: s:indentLevelFor(line) {{{2
|
|
|
|
function! s:indentLevelFor(line)
|
|
|
|
return match(a:line, '[^ \-+~`|]') / s:tree_wid
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:isTreeOpen() {{{2
|
|
|
|
function! s:isTreeOpen()
|
|
|
|
return s:getTreeWinNum() != -1
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-10-29 05:07:32 +08:00
|
|
|
"FUNCTION: s:isWindowUsable(winnumber) {{{2
|
|
|
|
"Returns 1 if opening a file from the tree in the given window requires it to
|
|
|
|
"be split
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"winnumber: the number of the window in question
|
|
|
|
function! s:isWindowUsable(winnumber)
|
|
|
|
"gotta split if theres only one window (i.e. the NERD tree)
|
|
|
|
if winnr("$") == 1
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
let oldwinnr = winnr()
|
|
|
|
exec a:winnumber . "wincmd p"
|
|
|
|
let specialWindow = getbufvar("%", '&buftype') != '' || getwinvar('%', '&previewwindow')
|
|
|
|
let modified = &modified
|
|
|
|
exec oldwinnr . "wincmd p"
|
|
|
|
|
|
|
|
"if its a special window e.g. quickfix or another explorer plugin then we
|
|
|
|
"have to split
|
|
|
|
if specialWindow
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if &hidden
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
return !modified || s:bufInWindows(winbufnr(a:winnumber)) >= 2
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:jumpToChild(direction) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" Args:
|
|
|
|
" direction: 0 if going to first child, 1 if going to last
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:jumpToChild(direction)
|
|
|
|
let currentNode = s:getSelectedNode()
|
2008-09-03 11:58:19 +08:00
|
|
|
if currentNode == {} || currentNode.isRoot()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("cannot jump to " . (a:direction ? "last" : "first") . " child")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
end
|
|
|
|
let dirNode = currentNode.parent
|
2008-09-03 11:58:19 +08:00
|
|
|
let childNodes = dirNode.getVisibleChildren()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let targetNode = childNodes[0]
|
|
|
|
if a:direction
|
|
|
|
let targetNode = childNodes[len(childNodes) - 1]
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
if targetNode.equals(currentNode)
|
2008-09-24 08:42:42 +08:00
|
|
|
let siblingDir = currentNode.parent.findOpenDirSiblingWithVisibleChildren(a:direction)
|
2008-06-09 08:46:53 +08:00
|
|
|
if siblingDir != {}
|
2008-09-03 11:58:19 +08:00
|
|
|
let indx = a:direction ? siblingDir.getVisibleChildCount()-1 : 0
|
|
|
|
let targetNode = siblingDir.getChildByIndex(indx, 1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(targetNode, 1, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:openDirNodeSplit(treenode) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Open the file represented by the given node in a new window.
|
|
|
|
"No action is taken for file nodes
|
|
|
|
"
|
|
|
|
"ARGS:
|
|
|
|
"treenode: file node to open
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openDirNodeSplit(treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:treenode.path.isDirectory == 1
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openNodeSplit(a:treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:openExplorerFor(treenode) {{{2
|
2008-06-13 08:48:56 +08:00
|
|
|
" opens a netrw window for the given dir treenode
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openExplorerFor(treenode)
|
2008-06-13 08:48:56 +08:00
|
|
|
let oldwin = winnr()
|
|
|
|
wincmd p
|
2008-09-05 10:34:50 +08:00
|
|
|
if oldwin == winnr() || (&modified && s:bufInWindows(winbufnr(winnr())) < 2)
|
2008-06-13 08:48:56 +08:00
|
|
|
wincmd p
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openDirNodeSplit(a:treenode)
|
2008-06-13 08:48:56 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
exec ("silent edit " . a:treenode.path.strForEditCmd())
|
2008-06-13 08:48:56 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:openFileNode(treenode) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Open the file represented by the given node in the current window, splitting
|
|
|
|
"the window if needed
|
|
|
|
"
|
|
|
|
"ARGS:
|
|
|
|
"treenode: file node to open
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openFileNode(treenode)
|
2008-12-13 14:32:35 +08:00
|
|
|
if b:NERDTreeType == "secondary"
|
|
|
|
exec 'edit ' . a:treenode.path.strForEditCmd()
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorInTreeWin()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-19 18:35:36 +08:00
|
|
|
"if the file is already open in this tab then just stick the cursor in it
|
2008-09-03 11:58:19 +08:00
|
|
|
let winnr = bufwinnr('^' . a:treenode.path.strForOS(0) . '$')
|
2008-06-19 18:35:36 +08:00
|
|
|
if winnr != -1
|
|
|
|
exec winnr . "wincmd w"
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-10-29 05:07:32 +08:00
|
|
|
if !s:isWindowUsable(winnr("#")) && s:firstNormalWindow() == -1
|
2008-10-27 18:21:39 +08:00
|
|
|
call s:openFileNodeSplit(a:treenode)
|
|
|
|
else
|
|
|
|
try
|
2008-10-29 05:07:32 +08:00
|
|
|
if !s:isWindowUsable(winnr("#"))
|
2008-10-27 18:21:39 +08:00
|
|
|
exec s:firstNormalWindow() . "wincmd w"
|
|
|
|
else
|
|
|
|
wincmd p
|
|
|
|
endif
|
|
|
|
exec ("edit " . a:treenode.path.strForEditCmd())
|
|
|
|
catch /^Vim\%((\a\+)\)\=:E37/
|
|
|
|
call s:putCursorInTreeWin()
|
|
|
|
call s:echo("Cannot open file, it is already open and modified")
|
|
|
|
catch /^Vim\%((\a\+)\)\=:/
|
|
|
|
echo v:exception
|
|
|
|
endtry
|
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:openFileNodeSplit(treenode) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Open the file represented by the given node in a new window.
|
|
|
|
"No action is taken for dir nodes
|
|
|
|
"
|
|
|
|
"ARGS:
|
|
|
|
"treenode: file node to open
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openFileNodeSplit(treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:treenode.path.isDirectory == 0
|
|
|
|
try
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openNodeSplit(a:treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
catch /^NERDTree.view.FileOpen/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Cannot open file, it is already open and modified" )
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:openNodeSplit(treenode) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Open the file/dir represented by the given node in a new window
|
|
|
|
"
|
|
|
|
"ARGS:
|
|
|
|
"treenode: file node to open
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openNodeSplit(treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
" Save the user's settings for splitbelow and splitright
|
|
|
|
let savesplitbelow=&splitbelow
|
|
|
|
let savesplitright=&splitright
|
|
|
|
|
|
|
|
" Figure out how to do the split based on the user's preferences.
|
|
|
|
" We want to split to the (left,right,top,bottom) of the explorer
|
|
|
|
" window, but we want to extract the screen real-estate from the
|
|
|
|
" window next to the explorer if possible.
|
|
|
|
"
|
|
|
|
" 'there' will be set to a command to move from the split window
|
|
|
|
" back to the explorer window
|
|
|
|
"
|
|
|
|
" 'back' will be set to a command to move from the explorer window
|
|
|
|
" back to the newly split window
|
|
|
|
"
|
|
|
|
" 'right' and 'below' will be set to the settings needed for
|
|
|
|
" splitbelow and splitright IF the explorer is the only window.
|
|
|
|
"
|
2008-09-05 10:34:50 +08:00
|
|
|
if s:shouldSplitVertically()
|
2008-06-29 15:43:50 +08:00
|
|
|
let there= g:NERDTreeWinPos == "left" ? "wincmd h" : "wincmd l"
|
|
|
|
let back = g:NERDTreeWinPos == "left" ? "wincmd l" : "wincmd h"
|
|
|
|
let right= g:NERDTreeWinPos == "left"
|
2007-11-03 05:23:09 +08:00
|
|
|
let below=0
|
|
|
|
else
|
2008-06-29 15:43:50 +08:00
|
|
|
let there= g:NERDTreeWinPos == "top" ? "wincmd k" : "wincmd j"
|
|
|
|
let back = g:NERDTreeWinPos == "top" ? "wincmd j" : "wincmd k"
|
|
|
|
let below= g:NERDTreeWinPos == "top"
|
2007-11-03 05:23:09 +08:00
|
|
|
let right=0
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Attempt to go to adjacent window
|
|
|
|
exec(back)
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
let onlyOneWin = (winnr() == s:getTreeWinNum())
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
" If no adjacent window, set splitright and splitbelow appropriately
|
|
|
|
if onlyOneWin
|
|
|
|
let &splitright=right
|
|
|
|
let &splitbelow=below
|
|
|
|
else
|
|
|
|
" found adjacent window - invert split direction
|
|
|
|
let &splitright=!right
|
|
|
|
let &splitbelow=!below
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Create a variable to use if splitting vertically
|
|
|
|
let splitMode = ""
|
2008-09-05 10:34:50 +08:00
|
|
|
if (onlyOneWin && s:shouldSplitVertically()) || (!onlyOneWin && !s:shouldSplitVertically())
|
2007-11-03 05:23:09 +08:00
|
|
|
let splitMode = "vertical"
|
|
|
|
endif
|
|
|
|
|
2008-06-29 15:43:50 +08:00
|
|
|
echomsg splitMode
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
" Open the new window
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
exec(splitMode." sp " . a:treenode.path.strForEditCmd())
|
2007-11-03 05:23:09 +08:00
|
|
|
catch /^Vim\%((\a\+)\)\=:E37/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorInTreeWin()
|
2008-09-03 11:58:19 +08:00
|
|
|
throw "NERDTree.view.FileOpen exception: ". a:treenode.path.str(0) ." is already open and modified."
|
2007-11-03 05:23:09 +08:00
|
|
|
catch /^Vim\%((\a\+)\)\=:/
|
2008-06-22 08:29:18 +08:00
|
|
|
"do nothing
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
|
2008-06-24 15:32:52 +08:00
|
|
|
"resize the tree window if no other window was open before
|
|
|
|
if onlyOneWin
|
2008-12-13 14:29:03 +08:00
|
|
|
let size = exists("b:NERDTreeOldWindowSize") ? b:NERDTreeOldWindowSize : g:NERDTreeWinSize
|
2008-06-24 15:32:52 +08:00
|
|
|
exec(there)
|
|
|
|
exec("silent ". splitMode ." resize ". size)
|
|
|
|
wincmd p
|
|
|
|
endif
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
" Restore splitmode settings
|
|
|
|
let &splitbelow=savesplitbelow
|
|
|
|
let &splitright=savesplitright
|
2008-06-09 08:46:53 +08:00
|
|
|
endfunction
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:promptToDelBuffer(bufnum, msg){{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"prints out the given msg and, if the user responds by pushing 'y' then the
|
|
|
|
"buffer with the given bufnum is deleted
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"bufnum: the buffer that may be deleted
|
|
|
|
"msg: a message that will be echoed to the user asking them if they wish to
|
|
|
|
" del the buffer
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:promptToDelBuffer(bufnum, msg)
|
2007-11-03 05:23:09 +08:00
|
|
|
echo a:msg
|
|
|
|
if nr2char(getchar()) == 'y'
|
|
|
|
exec "silent bdelete! " . a:bufnum
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:putCursorOnBookmarkTable(){{{2
|
2008-07-07 17:08:02 +08:00
|
|
|
"Places the cursor at the top of the bookmarks table
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:putCursorOnBookmarkTable()
|
2008-12-13 14:29:03 +08:00
|
|
|
if !b:NERDTreeShowBookmarks
|
2008-07-07 17:08:02 +08:00
|
|
|
throw "NERDTree.IllegalOperation exception: cant find bookmark table, bookmarks arent active"
|
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
let rootNodeLine = s:findRootNodeLineNumber()
|
2008-07-07 17:08:02 +08:00
|
|
|
|
|
|
|
let line = 1
|
|
|
|
while getline(line) !~ '^>-\+Bookmarks-\+$'
|
|
|
|
let line = line + 1
|
|
|
|
if line >= rootNodeLine
|
|
|
|
throw "NERDTree.BookmarkTableNotFound exception: didnt find the bookmarks table"
|
|
|
|
endif
|
|
|
|
endwhile
|
|
|
|
call cursor(line, 0)
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:putCursorOnNode(treenode, isJump, recurseUpward){{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Places the cursor on the line number representing the given node
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"treenode: the node to put the cursor on
|
2008-06-05 18:15:08 +08:00
|
|
|
"isJump: 1 if this cursor movement should be counted as a jump by vim
|
|
|
|
"recurseUpward: try to put the cursor on the parent if the this node isnt
|
|
|
|
"visible
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:putCursorOnNode(treenode, isJump, recurseUpward)
|
|
|
|
let ln = s:findNodeLineNumber(a:treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
if ln != -1
|
2008-06-05 18:15:08 +08:00
|
|
|
if a:isJump
|
2007-11-03 05:23:09 +08:00
|
|
|
mark '
|
|
|
|
endif
|
|
|
|
call cursor(ln, col("."))
|
2008-06-05 18:15:08 +08:00
|
|
|
else
|
2008-06-06 09:21:55 +08:00
|
|
|
if a:recurseUpward
|
|
|
|
let node = a:treenode
|
2008-09-05 10:34:50 +08:00
|
|
|
while s:findNodeLineNumber(node) == -1 && node != {}
|
2008-06-06 09:21:55 +08:00
|
|
|
let node = node.parent
|
2008-09-03 11:58:19 +08:00
|
|
|
call node.open()
|
2008-06-06 09:21:55 +08:00
|
|
|
endwhile
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(a:treenode, a:isJump, 0)
|
2008-06-05 18:15:08 +08:00
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:putCursorInTreeWin(){{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Places the cursor in the nerd tree window
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:putCursorInTreeWin()
|
|
|
|
if !s:isTreeOpen()
|
2008-05-16 07:51:39 +08:00
|
|
|
throw "NERDTree.view.InvalidOperation Exception: No NERD tree window exists"
|
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec s:getTreeWinNum() . "wincmd w"
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:renderBookmarks {{{2
|
|
|
|
function! s:renderBookmarks()
|
2008-06-28 16:42:00 +08:00
|
|
|
|
2008-06-28 17:35:22 +08:00
|
|
|
call setline(line(".")+1, ">----------Bookmarks----------")
|
2008-06-28 16:42:00 +08:00
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
for i in s:Bookmark.Bookmarks()
|
2008-09-03 11:58:19 +08:00
|
|
|
call setline(line(".")+1, i.str())
|
2008-06-28 16:42:00 +08:00
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
endfor
|
|
|
|
|
|
|
|
call setline(line(".")+1, '')
|
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:renderView {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"The entry function for rendering the tree. Renders the root then calls
|
2008-09-05 10:34:50 +08:00
|
|
|
"s:drawTree to draw the children of the root
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Args:
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
setlocal modifiable
|
|
|
|
|
|
|
|
"remember the top line of the buffer and the current line so we can
|
|
|
|
"restore the view exactly how it was
|
|
|
|
let curLine = line(".")
|
|
|
|
let curCol = col(".")
|
|
|
|
let topLine = line("w0")
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"delete all lines in the buffer (being careful not to clobber a register)
|
2008-06-28 18:20:42 +08:00
|
|
|
silent 1,$delete _
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:dumpHelp()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"delete the blank line before the help and add one after it
|
2008-06-21 20:47:12 +08:00
|
|
|
call setline(line(".")+1, "")
|
2007-11-03 05:23:09 +08:00
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
if b:NERDTreeShowBookmarks
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderBookmarks()
|
2008-06-28 17:22:29 +08:00
|
|
|
endif
|
2008-06-28 16:42:00 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"add the 'up a dir' line
|
2007-11-03 05:23:09 +08:00
|
|
|
call setline(line(".")+1, s:tree_up_dir_line)
|
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"draw the header line
|
2008-12-13 14:29:03 +08:00
|
|
|
call setline(line(".")+1, b:NERDTreeRoot.path.str(0))
|
2007-11-03 05:23:09 +08:00
|
|
|
call cursor(line(".")+1, col("."))
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"draw the tree
|
2008-12-13 14:29:03 +08:00
|
|
|
call s:drawTree(b:NERDTreeRoot, 0, 0, [], b:NERDTreeRoot.getChildCount() == 1)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
"delete the blank line at the top of the buffer
|
2008-06-28 18:20:42 +08:00
|
|
|
silent 1,1delete _
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"restore the view
|
2008-05-29 11:27:42 +08:00
|
|
|
let old_scrolloff=&scrolloff
|
|
|
|
let &scrolloff=0
|
2007-11-03 05:23:09 +08:00
|
|
|
call cursor(topLine, 1)
|
|
|
|
normal! zt
|
|
|
|
call cursor(curLine, curCol)
|
2008-05-29 11:27:42 +08:00
|
|
|
let &scrolloff = old_scrolloff
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
setlocal nomodifiable
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:renderViewSavingPosition {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Renders the tree and ensures the cursor stays on the current node or the
|
|
|
|
"current nodes parent if it is no longer available upon re-rendering
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:renderViewSavingPosition()
|
|
|
|
let currentNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
"go up the tree till we find a node that will be visible or till we run
|
2008-06-09 08:46:53 +08:00
|
|
|
"out of nodes
|
2008-09-03 11:58:19 +08:00
|
|
|
while currentNode != {} && !currentNode.isVisible() && !currentNode.isRoot()
|
2007-11-03 05:23:09 +08:00
|
|
|
let currentNode = currentNode.parent
|
|
|
|
endwhile
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if currentNode != {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(currentNode, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:restoreScreenState() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
2008-09-05 10:34:50 +08:00
|
|
|
"Sets the screen state back to what it was when s:saveScreenState was last
|
2007-11-03 05:23:09 +08:00
|
|
|
"called.
|
|
|
|
"
|
|
|
|
"Assumes the cursor is in the NERDTree window
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:restoreScreenState()
|
2008-12-13 14:29:03 +08:00
|
|
|
if !exists("b:NERDTreeOldTopLine") || !exists("b:NERDTreeOldPos") || !exists("b:NERDTreeOldWindowSize")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
2008-12-13 14:29:03 +08:00
|
|
|
exec("silent ". (s:shouldSplitVertically() ? "vertical" : "") ." resize ".b:NERDTreeOldWindowSize)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-22 09:54:32 +08:00
|
|
|
let old_scrolloff=&scrolloff
|
|
|
|
let &scrolloff=0
|
2008-12-13 14:29:03 +08:00
|
|
|
call cursor(b:NERDTreeOldTopLine, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
normal! zt
|
2008-12-13 14:29:03 +08:00
|
|
|
call setpos(".", b:NERDTreeOldPos)
|
2008-06-22 09:54:32 +08:00
|
|
|
let &scrolloff=old_scrolloff
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:saveScreenState() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Saves the current cursor position in the current buffer and the window
|
2008-06-09 08:46:53 +08:00
|
|
|
"scroll position
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:saveScreenState()
|
2008-08-03 12:46:48 +08:00
|
|
|
let win = winnr()
|
2008-10-28 16:03:39 +08:00
|
|
|
try
|
|
|
|
call s:putCursorInTreeWin()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeOldPos = getpos(".")
|
|
|
|
let b:NERDTreeOldTopLine = line("w0")
|
|
|
|
let b:NERDTreeOldWindowSize = s:shouldSplitVertically() ? winwidth("") : winheight("")
|
2008-10-28 16:03:39 +08:00
|
|
|
exec win . "wincmd w"
|
|
|
|
catch /NERDTree.view.InvalidOperation/
|
|
|
|
endtry
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:setupSyntaxHighlighting() {{{2
|
|
|
|
function! s:setupSyntaxHighlighting()
|
2007-11-03 05:23:09 +08:00
|
|
|
"treeFlags are syntax items that should be invisible, but give clues as to
|
|
|
|
"how things should be highlighted
|
|
|
|
syn match treeFlag #\~#
|
|
|
|
syn match treeFlag #\[RO\]#
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"highlighting for the .. (up dir) line at the top of the tree
|
2007-11-03 05:23:09 +08:00
|
|
|
execute "syn match treeUp #". s:tree_up_dir_line ."#"
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"highlighting for the ~/+ symbols for the directory nodes
|
2007-11-03 05:23:09 +08:00
|
|
|
syn match treeClosable #\~\<#
|
|
|
|
syn match treeClosable #\~\.#
|
|
|
|
syn match treeOpenable #+\<#
|
|
|
|
syn match treeOpenable #+\.#he=e-1
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"highlighting for the tree structural parts
|
2007-11-03 05:23:09 +08:00
|
|
|
syn match treePart #|#
|
|
|
|
syn match treePart #`#
|
|
|
|
syn match treePartFile #[|`]-#hs=s+1 contains=treePart
|
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"quickhelp syntax elements
|
2007-11-03 05:23:09 +08:00
|
|
|
syn match treeHelpKey #" \{1,2\}[^ ]*:#hs=s+2,he=e-1
|
|
|
|
syn match treeHelpKey #" \{1,2\}[^ ]*,#hs=s+2,he=e-1
|
|
|
|
syn match treeHelpTitle #" .*\~#hs=s+2,he=e-1 contains=treeFlag
|
|
|
|
syn match treeToggleOn #".*(on)#hs=e-2,he=e-1 contains=treeHelpKey
|
|
|
|
syn match treeToggleOff #".*(off)#hs=e-3,he=e-1 contains=treeHelpKey
|
2008-06-10 17:53:31 +08:00
|
|
|
syn match treeHelpCommand #" :.\{-}\>#hs=s+3
|
2008-06-21 20:47:12 +08:00
|
|
|
syn match treeHelp #^".*# contains=treeHelpKey,treeHelpTitle,treeFlag,treeToggleOff,treeToggleOn,treeHelpCommand
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"highlighting for readonly files
|
2008-12-07 07:04:23 +08:00
|
|
|
syn match treeRO #.*\[RO\]#hs=s+2 contains=treeFlag,treeBookmark,treePart,treePartFile
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-21 16:47:13 +08:00
|
|
|
"highlighting for sym links
|
2008-06-21 17:56:59 +08:00
|
|
|
syn match treeLink #[^-| `].* -> # contains=treeBookmark,treeOpenable,treeClosable,treeDirSlash
|
2008-06-21 16:47:13 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"highlighing for directory nodes and file nodes
|
2007-11-03 05:23:09 +08:00
|
|
|
syn match treeDirSlash #/#
|
2008-06-06 19:02:37 +08:00
|
|
|
syn match treeDir #[^-| `].*/# contains=treeLink,treeDirSlash,treeOpenable,treeClosable
|
2008-06-21 16:47:13 +08:00
|
|
|
syn match treeExecFile #[|`]-.*\*\($\| \)# contains=treeLink,treePart,treeRO,treePartFile,treeBookmark
|
|
|
|
syn match treeFile #|-.*# contains=treeLink,treePart,treeRO,treePartFile,treeBookmark,treeExecFile
|
|
|
|
syn match treeFile #`-.*# contains=treeLink,treePart,treeRO,treePartFile,treeBookmark,treeExecFile
|
2008-06-09 08:46:53 +08:00
|
|
|
syn match treeCWD #^/.*$#
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-28 17:35:09 +08:00
|
|
|
"highlighting for bookmarks
|
|
|
|
syn match treeBookmark # {.*}#hs=s+1
|
|
|
|
|
2008-07-02 18:24:31 +08:00
|
|
|
"highlighting for the bookmarks table
|
2008-06-28 17:35:09 +08:00
|
|
|
syn match treeBookmarksLeader #^>#
|
2008-07-02 18:24:31 +08:00
|
|
|
syn match treeBookmarksHeader #^>-\+Bookmarks-\+$# contains=treeBookmarksLeader
|
|
|
|
syn match treeBookmarkName #^>.\{-} #he=e-1 contains=treeBookmarksLeader
|
|
|
|
syn match treeBookmark #^>.*$# contains=treeBookmarksLeader,treeBookmarkName,treeBookmarksHeader
|
2008-06-28 17:35:09 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
if g:NERDChristmasTree
|
|
|
|
hi def link treePart Special
|
|
|
|
hi def link treePartFile Type
|
2008-06-21 16:47:13 +08:00
|
|
|
hi def link treeFile Normal
|
|
|
|
hi def link treeExecFile Title
|
2007-11-03 05:23:09 +08:00
|
|
|
hi def link treeDirSlash Identifier
|
|
|
|
hi def link treeClosable Type
|
|
|
|
else
|
|
|
|
hi def link treePart Normal
|
|
|
|
hi def link treePartFile Normal
|
|
|
|
hi def link treeFile Normal
|
|
|
|
hi def link treeClosable Title
|
|
|
|
endif
|
|
|
|
|
2008-07-02 18:24:31 +08:00
|
|
|
hi def link treeBookmarksHeader statement
|
2008-06-28 17:35:09 +08:00
|
|
|
hi def link treeBookmarksLeader ignore
|
|
|
|
hi def link treeBookmarkName Identifier
|
2008-07-02 18:24:31 +08:00
|
|
|
hi def link treeBookmark normal
|
2008-06-28 17:35:09 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
hi def link treeHelp String
|
|
|
|
hi def link treeHelpKey Identifier
|
2008-06-10 17:53:31 +08:00
|
|
|
hi def link treeHelpCommand Identifier
|
2007-11-03 05:23:09 +08:00
|
|
|
hi def link treeHelpTitle Macro
|
|
|
|
hi def link treeToggleOn Question
|
|
|
|
hi def link treeToggleOff WarningMsg
|
|
|
|
|
|
|
|
hi def link treeDir Directory
|
|
|
|
hi def link treeUp Directory
|
|
|
|
hi def link treeCWD Statement
|
2008-06-21 16:47:13 +08:00
|
|
|
hi def link treeLink Macro
|
2007-11-03 05:23:09 +08:00
|
|
|
hi def link treeOpenable Title
|
|
|
|
hi def link treeFlag ignore
|
|
|
|
hi def link treeRO WarningMsg
|
2008-06-12 17:14:07 +08:00
|
|
|
hi def link treeBookmark Statement
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
hi def link NERDTreeCurrentNode Search
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" Function: s:shouldSplitVertically() {{{2
|
2008-06-29 15:43:50 +08:00
|
|
|
" Returns 1 if g:NERDTreeWinPos is 'left' or 'right'
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:shouldSplitVertically()
|
2008-06-29 15:43:50 +08:00
|
|
|
return g:NERDTreeWinPos == 'left' || g:NERDTreeWinPos == 'right'
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:stripMarkupFromLine(line, removeLeadingSpaces){{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"returns the given line with all the tree parts stripped off
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"line: the subject line
|
|
|
|
"removeLeadingSpaces: 1 if leading spaces are to be removed (leading spaces =
|
|
|
|
"any spaces before the actual text of the node)
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:stripMarkupFromLine(line, removeLeadingSpaces)
|
2007-11-03 05:23:09 +08:00
|
|
|
let line = a:line
|
2008-06-09 08:46:53 +08:00
|
|
|
"remove the tree parts and the leading space
|
2008-10-19 18:06:32 +08:00
|
|
|
let line = substitute (line, s:tree_markup_reg,"","")
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-09 08:46:53 +08:00
|
|
|
"strip off any read only flag
|
2008-06-23 14:56:55 +08:00
|
|
|
let line = substitute (line, ' \[RO\]', "","")
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-06-12 17:14:07 +08:00
|
|
|
"strip off any bookmark flags
|
2008-06-06 19:13:05 +08:00
|
|
|
let line = substitute (line, ' {[^}]*}', "","")
|
2008-06-06 19:02:37 +08:00
|
|
|
|
2008-06-21 16:46:35 +08:00
|
|
|
"strip off any executable flags
|
|
|
|
let line = substitute (line, '*\ze\($\| \)', "","")
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
let wasdir = 0
|
2008-06-09 08:46:53 +08:00
|
|
|
if line =~ '/$'
|
2007-11-03 05:23:09 +08:00
|
|
|
let wasdir = 1
|
|
|
|
endif
|
|
|
|
let line = substitute (line,' -> .*',"","") " remove link to
|
|
|
|
if wasdir == 1
|
|
|
|
let line = substitute (line, '/\?$', '/', "")
|
|
|
|
endif
|
|
|
|
|
|
|
|
if a:removeLeadingSpaces
|
|
|
|
let line = substitute (line, '^ *', '', '')
|
|
|
|
endif
|
|
|
|
|
|
|
|
return line
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:toggle(dir) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Toggles the NERD tree. I.e the NERD tree is open, it is closed, if it is
|
2008-06-09 08:46:53 +08:00
|
|
|
"closed it is restored or initialized (if it doesnt exist)
|
2007-11-03 05:23:09 +08:00
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"dir: the full path for the root node (is only used if the NERD tree is being
|
|
|
|
"initialized.
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:toggle(dir)
|
|
|
|
if s:treeExistsForTab()
|
|
|
|
if !s:isTreeOpen()
|
|
|
|
call s:createTreeWin()
|
|
|
|
call s:restoreScreenState()
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:closeTree()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initNerdTree(a:dir)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
"SECTION: Interface bindings {{{1
|
|
|
|
"============================================================
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:activateNode(forceKeepWindowOpen) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"If the current node is a file, open it in the previous window (or a new one
|
|
|
|
"if the previous is modified). If it is a directory then it is opened.
|
2008-07-11 17:17:29 +08:00
|
|
|
"
|
|
|
|
"args:
|
|
|
|
"forceKeepWindowOpen - dont close the window even if NERDTreeQuitOnOpen is set
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:activateNode(forceKeepWindowOpen)
|
2007-11-03 05:23:09 +08:00
|
|
|
if getline(".") == s:tree_up_dir_line
|
2008-09-05 10:34:50 +08:00
|
|
|
return s:upDir(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
let treenode = s:getSelectedNode()
|
2008-06-28 16:43:33 +08:00
|
|
|
if treenode != {}
|
|
|
|
if treenode.path.isDirectory
|
2008-09-03 11:58:19 +08:00
|
|
|
call treenode.toggleOpen()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(treenode, 0, 0)
|
2008-06-28 16:43:33 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openFileNode(treenode)
|
2008-07-11 17:17:29 +08:00
|
|
|
if !a:forceKeepWindowOpen
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:closeTreeIfQuitOnOpen()
|
2008-07-11 17:17:29 +08:00
|
|
|
end
|
2008-06-28 16:43:33 +08:00
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
let bookmark = s:getSelectedBookmark()
|
2008-06-28 20:23:02 +08:00
|
|
|
if !empty(bookmark)
|
2008-06-28 21:00:55 +08:00
|
|
|
if bookmark.path.isDirectory
|
2008-09-03 13:40:33 +08:00
|
|
|
call bookmark.toRoot()
|
2008-06-28 21:00:55 +08:00
|
|
|
else
|
2008-09-03 13:40:33 +08:00
|
|
|
if bookmark.validate()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openFileNode(s:TreeFileNode.New(bookmark.path))
|
2008-07-15 19:22:36 +08:00
|
|
|
endif
|
2008-06-28 21:00:55 +08:00
|
|
|
endif
|
2008-06-27 18:58:33 +08:00
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:bindMappings() {{{2
|
|
|
|
function! s:bindMappings()
|
2007-11-03 05:23:09 +08:00
|
|
|
" set up mappings and commands for this buffer
|
2008-09-05 10:34:50 +08:00
|
|
|
nnoremap <silent> <buffer> <middlerelease> :call <SID>handleMiddleMouse()<cr>
|
|
|
|
nnoremap <silent> <buffer> <leftrelease> <leftrelease>:call <SID>checkForActivate()<cr>
|
|
|
|
nnoremap <silent> <buffer> <2-leftmouse> :call <SID>activateNode(0)<cr>
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapActivateNode . " :call <SID>activateNode(0)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapOpenSplit ." :call <SID>openEntrySplit(0)<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapPreview ." :call <SID>previewNode(0)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapPreviewSplit ." :call <SID>previewNode(1)<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapExecute ." :call <SID>executeNode()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapOpenRecursively ." :call <SID>openNodeRecursively()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapUpdirKeepOpen ." :call <SID>upDir(1)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapUpdir ." :call <SID>upDir(0)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapChangeRoot ." :call <SID>chRoot()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapChdir ." :call <SID>chCwd()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapQuit ." :NERDTreeToggle<cr>"
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapRefreshRoot ." :call <SID>refreshRoot()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapRefresh ." :call <SID>refreshCurrent()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapHelp ." :call <SID>displayHelp()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapToggleHidden ." :call <SID>toggleShowHidden()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapToggleFilters ." :call <SID>toggleIgnoreFilter()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapToggleFiles ." :call <SID>toggleShowFiles()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapToggleBookmarks ." :call <SID>toggleShowBookmarks()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapCloseDir ." :call <SID>closeCurrentDir()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapCloseChildren ." :call <SID>closeChildren()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapFilesystemMenu ." :call <SID>showFileSystemMenu()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapJumpParent ." :call <SID>jumpToParent()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapJumpNextSibling ." :call <SID>jumpToSibling(1)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapJumpPrevSibling ." :call <SID>jumpToSibling(0)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapJumpFirstChild ." :call <SID>jumpToFirstChild()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapJumpLastChild ." :call <SID>jumpToLastChild()<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapJumpRoot ." :call <SID>jumpToRoot()<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapOpenInTab ." :call <SID>openInNewTab(0)<cr>"
|
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapOpenInTabSilent ." :call <SID>openInNewTab(1)<cr>"
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapOpenExpl ." :call <SID>openExplorer()<cr>"
|
2008-06-05 18:41:05 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
exec "nnoremap <silent> <buffer> ". g:NERDTreeMapDeleteBookmark ." :call <SID>deleteBookmark()<cr>"
|
2008-08-31 16:55:24 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
command! -buffer -nargs=1 Bookmark :call <SID>bookmarkNode('<args>')
|
|
|
|
command! -buffer -complete=customlist,s:completeBookmarks -nargs=1 RevealBookmark :call <SID>revealBookmark('<args>')
|
|
|
|
command! -buffer -complete=customlist,s:completeBookmarks -nargs=1 OpenBookmark :call <SID>openBookmark('<args>')
|
|
|
|
command! -buffer -complete=customlist,s:completeBookmarks -nargs=* ClearBookmarks call <SID>clearBookmarks('<args>')
|
|
|
|
command! -buffer -complete=customlist,s:completeBookmarks -nargs=+ BookmarkToRoot call s:Bookmark.ToRoot('<args>')
|
|
|
|
command! -buffer -nargs=0 ClearAllBookmarks call s:Bookmark.ClearAll() <bar> call <SID>renderView()
|
|
|
|
command! -buffer -nargs=0 ReadBookmarks call s:Bookmark.CacheBookmarks(0) <bar> call <SID>renderView()
|
2008-09-03 14:03:56 +08:00
|
|
|
command! -buffer -nargs=0 WriteBookmarks call s:Bookmark.Write()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:bookmarkNode(name) {{{2
|
2008-06-12 17:14:07 +08:00
|
|
|
" Associate the current node with the given name
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:bookmarkNode(name)
|
|
|
|
let currentNode = s:getSelectedNode()
|
2008-06-12 17:14:07 +08:00
|
|
|
if currentNode != {}
|
2008-07-02 17:15:28 +08:00
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
call currentNode.bookmark(a:name)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2008-07-02 17:15:28 +08:00
|
|
|
catch /NERDTree.IllegalBookmarkName/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("bookmark names must not contain spaces")
|
2008-07-02 17:15:28 +08:00
|
|
|
endtry
|
2008-06-12 17:14:07 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("select a node first")
|
2008-06-12 17:14:07 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:checkForActivate() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"Checks if the click should open the current node, if so then activate() is
|
|
|
|
"called (directories are automatically opened if the symbol beside them is
|
|
|
|
"clicked)
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:checkForActivate()
|
|
|
|
let currentNode = s:getSelectedNode()
|
2008-06-09 08:46:53 +08:00
|
|
|
if currentNode != {}
|
2007-11-03 05:23:09 +08:00
|
|
|
let startToCur = strpart(getline(line(".")), 0, col("."))
|
|
|
|
let char = strpart(startToCur, strlen(startToCur)-1, 1)
|
|
|
|
|
|
|
|
"if they clicked a dir, check if they clicked on the + or ~ sign
|
2008-06-09 08:46:53 +08:00
|
|
|
"beside it
|
2007-11-03 05:23:09 +08:00
|
|
|
if currentNode.path.isDirectory
|
2008-10-19 18:06:32 +08:00
|
|
|
if startToCur =~ s:tree_markup_reg . '$' && char =~ '[+~]'
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:activateNode(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if (g:NERDTreeMouseMode == 2 && currentNode.path.isDirectory) || g:NERDTreeMouseMode == 3
|
|
|
|
if char !~ s:tree_markup_reg && startToCur !~ '\/$'
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:activateNode(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:chCwd() {{{2
|
|
|
|
function! s:chCwd()
|
|
|
|
let treenode = s:getSelectedNode()
|
2008-06-09 08:46:53 +08:00
|
|
|
if treenode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
call treenode.path.changeToDir()
|
2007-11-03 05:23:09 +08:00
|
|
|
catch /^NERDTree.Path.Change/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("could not change cwd")
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:chRoot() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" changes the current root to the selected one
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:chRoot()
|
|
|
|
let treenode = s:getSelectedNode()
|
2008-06-07 13:36:14 +08:00
|
|
|
if treenode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
call treenode.makeRoot()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2008-12-13 14:29:03 +08:00
|
|
|
call s:putCursorOnNode(b:NERDTreeRoot, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:clearBookmarks(bookmarks) {{{2
|
|
|
|
function! s:clearBookmarks(bookmarks)
|
2008-06-12 17:14:07 +08:00
|
|
|
if a:bookmarks == ''
|
2008-09-05 10:34:50 +08:00
|
|
|
let currentNode = s:getSelectedNode()
|
2008-06-09 09:21:44 +08:00
|
|
|
if currentNode != {}
|
2008-09-03 11:58:19 +08:00
|
|
|
call currentNode.clearBoomarks()
|
2008-06-07 09:56:41 +08:00
|
|
|
endif
|
2008-06-09 09:21:44 +08:00
|
|
|
else
|
2008-06-12 17:14:07 +08:00
|
|
|
for name in split(a:bookmarks, ' ')
|
2008-09-03 14:03:56 +08:00
|
|
|
let bookmark = s:Bookmark.BookmarkFor(name)
|
2008-09-03 11:58:19 +08:00
|
|
|
call bookmark.delete()
|
2008-06-09 09:21:44 +08:00
|
|
|
endfor
|
|
|
|
endif
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2008-06-07 09:56:41 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:closeChildren() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" closes all childnodes of the current node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:closeChildren()
|
|
|
|
let currentNode = s:getSelectedDir()
|
2007-11-03 05:23:09 +08:00
|
|
|
if currentNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
call currentNode.closeChildren()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(currentNode, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:closeCurrentDir() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" closes the parent dir of the current node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:closeCurrentDir()
|
|
|
|
let treenode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if treenode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let parent = treenode.parent
|
2008-09-03 11:58:19 +08:00
|
|
|
if parent.isRoot()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("cannot close tree root")
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
call treenode.parent.close()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(treenode.parent, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:copyNode() {{{2
|
|
|
|
function! s:copyNode()
|
|
|
|
let currentNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if currentNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a file node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let newNodePath = input("Copy the current node\n" .
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n" .
|
|
|
|
\ "Enter the new path to copy the node to: \n" .
|
2008-09-03 11:58:19 +08:00
|
|
|
\ "", currentNode.path.str(0))
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if newNodePath != ""
|
2008-06-03 17:40:16 +08:00
|
|
|
"strip trailing slash
|
|
|
|
let newNodePath = substitute(newNodePath, '\/$', '', '')
|
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
let confirmed = 1
|
2008-09-03 11:58:19 +08:00
|
|
|
if currentNode.path.copyingWillOverwrite(newNodePath)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("\nWarning: copying may overwrite files! Continue? (yN)")
|
2007-11-03 05:23:09 +08:00
|
|
|
let choice = nr2char(getchar())
|
|
|
|
let confirmed = choice == 'y'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if confirmed
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
let newNode = currentNode.copy(newNodePath)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(newNode, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
catch /^NERDTree/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("Could not copy node")
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
endif
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Copy aborted.")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
redraw
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:deleteBookmark() {{{2
|
2008-08-31 16:55:24 +08:00
|
|
|
" if the cursor is on a bookmark, prompt to delete
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:deleteBookmark()
|
|
|
|
let bookmark = s:getSelectedBookmark()
|
2008-08-31 16:55:24 +08:00
|
|
|
if bookmark == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a bookmark")
|
2008-08-31 16:55:24 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
echo "Are you sure you wish to delete the bookmark:\n\"" . bookmark.name . "\" (yN):"
|
|
|
|
|
|
|
|
if nr2char(getchar()) == 'y'
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
call bookmark.delete()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2008-08-31 16:55:24 +08:00
|
|
|
redraw
|
|
|
|
catch /^NERDTree/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("Could not remove bookmark")
|
2008-08-31 16:55:24 +08:00
|
|
|
endtry
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("delete aborted" )
|
2008-08-31 16:55:24 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:deleteNode() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" if the current node is a file, pops up a dialog giving the user the option
|
|
|
|
" to delete it
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:deleteNode()
|
|
|
|
let currentNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if currentNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a file node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let confirmed = 0
|
|
|
|
|
|
|
|
if currentNode.path.isDirectory
|
|
|
|
let choice =input("Delete the current node\n" .
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n" .
|
|
|
|
\ "STOP! To delete this entire directory, type 'yes'\n" .
|
2008-09-03 11:58:19 +08:00
|
|
|
\ "" . currentNode.path.strForOS(0) . ": ")
|
2007-11-03 05:23:09 +08:00
|
|
|
let confirmed = choice == 'yes'
|
|
|
|
else
|
|
|
|
echo "Delete the current node\n" .
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n".
|
|
|
|
\ "Are you sure you wish to delete the node:\n" .
|
2008-09-03 11:58:19 +08:00
|
|
|
\ "" . currentNode.path.strForOS(0) . " (yN):"
|
2007-11-03 05:23:09 +08:00
|
|
|
let choice = nr2char(getchar())
|
|
|
|
let confirmed = choice == 'y'
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
if confirmed
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
call currentNode.delete()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
"if the node is open in a buffer, ask the user if they want to
|
2008-06-09 08:46:53 +08:00
|
|
|
"close that buffer
|
2008-09-03 11:58:19 +08:00
|
|
|
let bufnum = bufnr(currentNode.path.str(0))
|
2007-11-03 05:23:09 +08:00
|
|
|
if buflisted(bufnum)
|
|
|
|
let prompt = "\nNode deleted.\n\nThe file is open in buffer ". bufnum . (bufwinnr(bufnum) == -1 ? " (hidden)" : "") .". Delete this buffer? (yN)"
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:promptToDelBuffer(bufnum, prompt)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
redraw
|
|
|
|
catch /^NERDTree/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("Could not remove node")
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("delete aborted" )
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:displayHelp() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" toggles the help display
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:displayHelp()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:treeShowHelp = b:treeShowHelp ? 0 : 1
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:executeNode() {{{2
|
|
|
|
function! s:executeNode()
|
|
|
|
let treenode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if treenode == {} || treenode.path.isDirectory
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Select an executable file node first" )
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
|
|
|
echo "NERDTree executor\n" .
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n".
|
2007-11-03 05:23:09 +08:00
|
|
|
\ "Complete the command to execute (add arguments etc): \n\n"
|
2008-09-03 11:58:19 +08:00
|
|
|
let cmd = treenode.path.strForOS(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
let cmd = input(':!', cmd . ' ')
|
|
|
|
|
|
|
|
if cmd != ''
|
|
|
|
exec ':!' . cmd
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("command aborted")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:handleMiddleMouse() {{{2
|
|
|
|
function! s:handleMiddleMouse()
|
|
|
|
let curNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if curNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a node first" )
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
if curNode.path.isDirectory
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openExplorer()
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openEntrySplit(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:insertNewNode() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" Adds a new node to the filesystem and then into the tree
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:insertNewNode()
|
|
|
|
let curDirNode = s:getSelectedDir()
|
2007-11-03 05:23:09 +08:00
|
|
|
if curDirNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a node first" )
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let newNodeName = input("Add a childnode\n".
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n".
|
|
|
|
\ "Enter the dir/file name to be created. Dirs end with a '/'\n" .
|
2008-09-03 11:58:19 +08:00
|
|
|
\ "", curDirNode.path.strForGlob() . s:os_slash)
|
2008-06-09 08:46:53 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
if newNodeName == ''
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Node Creation Aborted.")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let newPath = s:Path.Create(newNodeName)
|
2008-12-13 14:29:03 +08:00
|
|
|
let parentNode = b:NERDTreeRoot.findNode(newPath.getPathTrunk())
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-03 14:03:56 +08:00
|
|
|
let newTreeNode = s:TreeFileNode.New(newPath)
|
2008-06-09 08:46:53 +08:00
|
|
|
if parentNode.isOpen || !empty(parentNode.children)
|
2008-09-03 11:58:19 +08:00
|
|
|
call parentNode.addChild(newTreeNode, 1)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(newTreeNode, 1, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
catch /^NERDTree/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("Node Not Created.")
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:jumpToFirstChild() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" wrapper for the jump to child method
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:jumpToFirstChild()
|
|
|
|
call s:jumpToChild(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:jumpToLastChild() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" wrapper for the jump to child method
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:jumpToLastChild()
|
|
|
|
call s:jumpToChild(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:jumpToParent() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" moves the cursor to the parent of the current node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:jumpToParent()
|
|
|
|
let currentNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if !empty(currentNode)
|
2008-06-09 08:46:53 +08:00
|
|
|
if !empty(currentNode.parent)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(currentNode.parent, 1, 0)
|
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("cannot jump to parent")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("put the cursor on a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:jumpToRoot() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" moves the cursor to the root node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:jumpToRoot()
|
2008-12-13 14:29:03 +08:00
|
|
|
call s:putCursorOnNode(b:NERDTreeRoot, 1, 0)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:jumpToSibling() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" moves the cursor to the sibling of the current node in the given direction
|
|
|
|
"
|
|
|
|
" Args:
|
|
|
|
" forward: 1 if the cursor should move to the next sibling, 0 if it should
|
|
|
|
" move back to the previous sibling
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:jumpToSibling(forward)
|
|
|
|
let currentNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if !empty(currentNode)
|
2008-09-03 11:58:19 +08:00
|
|
|
let sibling = currentNode.findSibling(a:forward)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
if !empty(sibling)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(sibling, 1, 0)
|
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("put the cursor on a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:openBookmark(name) {{{2
|
2008-06-12 17:14:07 +08:00
|
|
|
" put the cursor on the given bookmark and, if its a file, open it
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openBookmark(name)
|
2008-06-08 14:24:47 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let targetNode = s:Bookmark.GetNodeForName(a:name, 0)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(targetNode, 0, 1)
|
2008-06-12 17:14:07 +08:00
|
|
|
redraw!
|
2008-07-13 17:02:59 +08:00
|
|
|
catch /NERDTree.BookmarkedNodeNotFound/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("note - target node is not cached")
|
2008-09-03 14:03:56 +08:00
|
|
|
let bookmark = s:Bookmark.BookmarkFor(a:name)
|
|
|
|
let targetNode = s:TreeFileNode.New(bookmark.path)
|
2008-06-08 14:24:47 +08:00
|
|
|
endtry
|
2008-06-13 08:51:06 +08:00
|
|
|
if targetNode.path.isDirectory
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openExplorerFor(targetNode)
|
2008-06-13 08:51:06 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openFileNode(targetNode)
|
2008-06-12 17:14:07 +08:00
|
|
|
endif
|
2008-06-07 13:40:18 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:openEntrySplit(forceKeepWindowOpen) {{{2
|
2008-07-11 17:17:29 +08:00
|
|
|
"Opens the currently selected file from the explorer in a
|
|
|
|
"new window
|
|
|
|
"
|
|
|
|
"args:
|
|
|
|
"forceKeepWindowOpen - dont close the window even if NERDTreeQuitOnOpen is set
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openEntrySplit(forceKeepWindowOpen)
|
|
|
|
let treenode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if treenode != {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openFileNodeSplit(treenode)
|
2008-07-11 17:17:29 +08:00
|
|
|
if !a:forceKeepWindowOpen
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:closeTreeIfQuitOnOpen()
|
2008-06-27 18:58:33 +08:00
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-06-09 08:46:53 +08:00
|
|
|
endfunction
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:openExplorer() {{{2
|
|
|
|
function! s:openExplorer()
|
|
|
|
let treenode = s:getSelectedDir()
|
2007-11-03 05:23:09 +08:00
|
|
|
if treenode != {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openExplorerFor(treenode)
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:openInNewTab(stayCurrentTab) {{{2
|
2008-06-29 09:31:46 +08:00
|
|
|
" Opens the selected node or bookmark in a new tab
|
2007-11-03 05:23:09 +08:00
|
|
|
" Args:
|
|
|
|
" stayCurrentTab: if 1 then vim will stay in the current tab, if 0 then vim
|
|
|
|
" will go to the tab where the new file is opened
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:openInNewTab(stayCurrentTab)
|
2008-06-29 09:31:46 +08:00
|
|
|
let currentTab = tabpagenr()
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
let treenode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if treenode != {}
|
2008-07-05 08:15:28 +08:00
|
|
|
if treenode.path.isDirectory
|
2008-07-06 12:25:59 +08:00
|
|
|
tabnew
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initNerdTree(treenode.path.strForOS(0))
|
2008-07-05 08:15:28 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
exec "tabedit " . treenode.path.strForEditCmd()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
let bookmark = s:getSelectedBookmark()
|
2008-06-29 09:31:46 +08:00
|
|
|
if bookmark != {}
|
|
|
|
if bookmark.path.isDirectory
|
2008-07-06 12:26:56 +08:00
|
|
|
tabnew
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:initNerdTree(bookmark.name)
|
2008-06-29 09:31:46 +08:00
|
|
|
else
|
2008-09-03 11:58:19 +08:00
|
|
|
exec "tabedit " . bookmark.path.strForEditCmd()
|
2008-06-29 09:31:46 +08:00
|
|
|
endif
|
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-07-05 08:15:28 +08:00
|
|
|
if a:stayCurrentTab
|
|
|
|
exec "tabnext " . currentTab
|
|
|
|
endif
|
2008-06-09 08:46:53 +08:00
|
|
|
endfunction
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:openNodeRecursively() {{{2
|
|
|
|
function! s:openNodeRecursively()
|
|
|
|
let treenode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if treenode == {} || treenode.path.isDirectory == 0
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Select a directory node first" )
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Recursively opening node. Please wait...")
|
2008-09-03 11:58:19 +08:00
|
|
|
call treenode.openRecursively()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
redraw
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Recursively opening node. Please wait... DONE")
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
2008-06-09 08:46:53 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:previewNode() {{{2
|
|
|
|
function! s:previewNode(openNewWin)
|
2008-12-13 19:38:13 +08:00
|
|
|
let currentBuf = bufnr(".")
|
2007-11-03 05:23:09 +08:00
|
|
|
if a:openNewWin
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:openEntrySplit(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:activateNode(1)
|
2007-11-03 05:23:09 +08:00
|
|
|
end
|
2008-12-13 19:38:13 +08:00
|
|
|
exec bufwinnr(currentBuf) . "wincmd w"
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:revealBookmark(name) {{{2
|
2008-06-05 18:41:05 +08:00
|
|
|
" put the cursor on the node associate with the given name
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:revealBookmark(name)
|
2008-06-08 17:53:25 +08:00
|
|
|
try
|
2008-09-03 14:03:56 +08:00
|
|
|
let targetNode = s:Bookmark.GetNodeForName(a:name, 0)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(targetNode, 0, 1)
|
2008-06-12 17:14:07 +08:00
|
|
|
catch /NERDTree.BookmarkDoesntExist/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Bookmark isnt cached under the current root")
|
2008-06-08 17:53:25 +08:00
|
|
|
endtry
|
2008-06-05 18:41:05 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:refreshRoot() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" Reloads the current root. All nodes below this will be lost and the root dir
|
|
|
|
" will be reloaded.
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:refreshRoot()
|
|
|
|
call s:echo("Refreshing the root node. This could take a while...")
|
2008-12-13 14:29:03 +08:00
|
|
|
call b:NERDTreeRoot.refresh()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
redraw
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Refreshing the root node. This could take a while... DONE")
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:refreshCurrent() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" refreshes the root for the current node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:refreshCurrent()
|
|
|
|
let treenode = s:getSelectedDir()
|
2008-06-09 08:46:53 +08:00
|
|
|
if treenode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Refresh failed. Select a node first")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Refreshing node. This could take a while...")
|
2008-09-03 11:58:19 +08:00
|
|
|
call treenode.refresh()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
redraw
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Refreshing node. This could take a while... DONE")
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:renameCurrent() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" allows the user to rename the current node
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:renameCurrent()
|
|
|
|
let curNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if curNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a node first" )
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let newNodePath = input("Rename the current node\n" .
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n" .
|
|
|
|
\ "Enter the new path for the node: \n" .
|
2008-09-03 11:58:19 +08:00
|
|
|
\ "", curNode.path.strForOS(0))
|
2008-06-09 08:46:53 +08:00
|
|
|
|
2007-11-03 05:23:09 +08:00
|
|
|
if newNodePath == ''
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Node Renaming Aborted.")
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
try
|
2008-09-03 11:58:19 +08:00
|
|
|
let bufnum = bufnr(curNode.path.str(0))
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-09-03 11:58:19 +08:00
|
|
|
call curNode.rename(newNodePath)
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
"if the node is open in a buffer, ask the user if they want to
|
2008-06-09 08:46:53 +08:00
|
|
|
"close that buffer
|
2007-11-03 05:23:09 +08:00
|
|
|
if bufnum != -1
|
2008-05-04 10:22:59 +08:00
|
|
|
let prompt = "\nNode renamed.\n\nThe old file is open in buffer ". bufnum . (bufwinnr(bufnum) == -1 ? " (hidden)" : "") .". Delete this buffer? (yN)"
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:promptToDelBuffer(bufnum, prompt)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:putCursorOnNode(curNode, 1, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
redraw
|
|
|
|
catch /^NERDTree/
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echoWarning("Node Not Renamed.")
|
2007-11-03 05:23:09 +08:00
|
|
|
endtry
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:showFileSystemMenu() {{{2
|
|
|
|
function! s:showFileSystemMenu()
|
|
|
|
let curNode = s:getSelectedNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
if curNode == {}
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("Put the cursor on a node first" )
|
2007-11-03 05:23:09 +08:00
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
let prompt = "NERDTree Filesystem Menu\n" .
|
2008-06-09 08:46:53 +08:00
|
|
|
\ "==========================================================\n".
|
|
|
|
\ "Select the desired operation: \n" .
|
2008-01-18 16:47:21 +08:00
|
|
|
\ " (a)dd a childnode\n".
|
|
|
|
\ " (m)ove the current node\n".
|
|
|
|
\ " (d)elete the current node\n"
|
2008-09-03 14:03:56 +08:00
|
|
|
if s:Path.CopyingSupported()
|
2008-05-16 07:51:39 +08:00
|
|
|
let prompt = prompt . " (c)opy the current node\n\n"
|
|
|
|
else
|
|
|
|
let prompt = prompt . " \n"
|
|
|
|
endif
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-05-16 07:51:39 +08:00
|
|
|
echo prompt
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
let choice = nr2char(getchar())
|
|
|
|
|
2008-01-18 16:47:21 +08:00
|
|
|
if choice ==? "a"
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:insertNewNode()
|
2008-01-18 16:47:21 +08:00
|
|
|
elseif choice ==? "m"
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renameCurrent()
|
2008-01-18 16:47:21 +08:00
|
|
|
elseif choice ==? "d"
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:deleteNode()
|
2008-09-03 14:03:56 +08:00
|
|
|
elseif choice ==? "c" && s:Path.CopyingSupported()
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:copyNode()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:toggleIgnoreFilter() {{{2
|
2008-06-09 08:46:53 +08:00
|
|
|
" toggles the use of the NERDTreeIgnore option
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:toggleIgnoreFilter()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeIgnoreEnabled = !b:NERDTreeIgnoreEnabled
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderViewSavingPosition()
|
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:toggleShowBookmarks() {{{2
|
2008-06-28 16:44:55 +08:00
|
|
|
" toggles the display of bookmarks
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:toggleShowBookmarks()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeShowBookmarks = !b:NERDTreeShowBookmarks
|
|
|
|
if b:NERDTreeShowBookmarks
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnBookmarkTable()
|
2008-07-07 17:08:02 +08:00
|
|
|
else
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderViewSavingPosition()
|
2008-07-07 17:08:02 +08:00
|
|
|
endif
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:centerView()
|
2008-06-28 16:44:55 +08:00
|
|
|
endfunction
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:toggleShowFiles() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" toggles the display of hidden files
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:toggleShowFiles()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeShowFiles = !b:NERDTreeShowFiles
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderViewSavingPosition()
|
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
" FUNCTION: s:toggleShowHidden() {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
" toggles the display of hidden files
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:toggleShowHidden()
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeShowHidden = !b:NERDTreeShowHidden
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderViewSavingPosition()
|
|
|
|
call s:centerView()
|
2007-11-03 05:23:09 +08:00
|
|
|
endfunction
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
"FUNCTION: s:upDir(keepState) {{{2
|
2007-11-03 05:23:09 +08:00
|
|
|
"moves the tree up a level
|
|
|
|
"
|
|
|
|
"Args:
|
|
|
|
"keepState: 1 if the current root should be left open when the tree is
|
|
|
|
"re-rendered
|
2008-09-05 10:34:50 +08:00
|
|
|
function! s:upDir(keepState)
|
2008-12-13 14:29:03 +08:00
|
|
|
let cwd = b:NERDTreeRoot.path.str(0)
|
2007-11-03 05:23:09 +08:00
|
|
|
if cwd == "/" || cwd =~ '^[^/]..$'
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:echo("already at top dir")
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
|
|
|
if !a:keepState
|
2008-12-13 14:29:03 +08:00
|
|
|
call b:NERDTreeRoot.close()
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
let oldRoot = b:NERDTreeRoot
|
2007-11-03 05:23:09 +08:00
|
|
|
|
2008-12-13 14:29:03 +08:00
|
|
|
if empty(b:NERDTreeRoot.parent)
|
|
|
|
let path = b:NERDTreeRoot.path.getPathTrunk()
|
2008-09-03 14:03:56 +08:00
|
|
|
let newRoot = s:TreeDirNode.New(path)
|
2008-09-03 11:58:19 +08:00
|
|
|
call newRoot.open()
|
2008-12-13 14:29:03 +08:00
|
|
|
call newRoot.transplantChild(b:NERDTreeRoot)
|
|
|
|
let b:NERDTreeRoot = newRoot
|
2007-11-03 05:23:09 +08:00
|
|
|
else
|
2008-12-13 14:29:03 +08:00
|
|
|
let b:NERDTreeRoot = b:NERDTreeRoot.parent
|
2007-11-03 05:23:09 +08:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2008-09-05 10:34:50 +08:00
|
|
|
call s:renderView()
|
|
|
|
call s:putCursorOnNode(oldRoot, 0, 0)
|
2007-11-03 05:23:09 +08:00
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2008-10-01 17:32:03 +08:00
|
|
|
|
|
|
|
"reset &cpo back to users setting
|
|
|
|
let &cpo = s:old_cpo
|
|
|
|
|
2008-06-08 13:34:22 +08:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|