decompose the giant NERD_tree.vim file
* Move the classes out into `plugin/nerdtree/<classname>`. * Move the other functions out into `autoload/nerdtree.vim`. Stuff still to do: * extract out at least one view class from `autoload/nerdtree` - something like NERDTreeWindow * figure out which functions in autoload/nerdtree should be scoped to the script instead of public
This commit is contained in:
parent
1817ccdb57
commit
fb4a5a116a
1623
autoload/nerdtree.vim
Normal file
1623
autoload/nerdtree.vim
Normal file
File diff suppressed because it is too large
Load Diff
4289
plugin/NERD_tree.vim
4289
plugin/NERD_tree.vim
File diff suppressed because it is too large
Load Diff
293
plugin/nerdtree/bookmark.vim
Normal file
293
plugin/nerdtree/bookmark.vim
Normal file
@ -0,0 +1,293 @@
|
|||||||
|
"CLASS: Bookmark {{{2
|
||||||
|
"============================================================
|
||||||
|
let s:Bookmark = {}
|
||||||
|
let g:NERDTreeBookmark = s:Bookmark
|
||||||
|
" FUNCTION: Bookmark.activate() {{{3
|
||||||
|
function! s:Bookmark.activate(...)
|
||||||
|
call self.open(a:0 ? a:1 : {})
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.AddBookmark(name, path) {{{3
|
||||||
|
" 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
|
||||||
|
function! s:Bookmark.AddBookmark(name, path)
|
||||||
|
for i in s:Bookmark.Bookmarks()
|
||||||
|
if i.name ==# a:name
|
||||||
|
let i.path = a:path
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
call add(s:Bookmark.Bookmarks(), s:Bookmark.New(a:name, a:path))
|
||||||
|
call s:Bookmark.Sort()
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.Bookmarks() {{{3
|
||||||
|
" Class method to get all bookmarks. Lazily initializes the bookmarks global
|
||||||
|
" variable
|
||||||
|
function! s:Bookmark.Bookmarks()
|
||||||
|
if !exists("g:NERDTreeBookmarks")
|
||||||
|
let g:NERDTreeBookmarks = []
|
||||||
|
endif
|
||||||
|
return g:NERDTreeBookmarks
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.BookmarkExistsFor(name) {{{3
|
||||||
|
" class method that returns 1 if a bookmark with the given name is found, 0
|
||||||
|
" otherwise
|
||||||
|
function! s:Bookmark.BookmarkExistsFor(name)
|
||||||
|
try
|
||||||
|
call s:Bookmark.BookmarkFor(a:name)
|
||||||
|
return 1
|
||||||
|
catch /^NERDTree.BookmarkNotFoundError/
|
||||||
|
return 0
|
||||||
|
endtry
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.BookmarkFor(name) {{{3
|
||||||
|
" Class method to get the bookmark that has the given name. {} is return if no
|
||||||
|
" bookmark is found
|
||||||
|
function! s:Bookmark.BookmarkFor(name)
|
||||||
|
for i in s:Bookmark.Bookmarks()
|
||||||
|
if i.name ==# a:name
|
||||||
|
return i
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
throw "NERDTree.BookmarkNotFoundError: no bookmark found for name: \"". a:name .'"'
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.BookmarkNames() {{{3
|
||||||
|
" Class method to return an array of all bookmark names
|
||||||
|
function! s:Bookmark.BookmarkNames()
|
||||||
|
let names = []
|
||||||
|
for i in s:Bookmark.Bookmarks()
|
||||||
|
call add(names, i.name)
|
||||||
|
endfor
|
||||||
|
return names
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.CacheBookmarks(silent) {{{3
|
||||||
|
" Class method to read all bookmarks from the bookmarks file intialize
|
||||||
|
" bookmark objects for each one.
|
||||||
|
"
|
||||||
|
" Args:
|
||||||
|
" silent - dont echo an error msg if invalid bookmarks are found
|
||||||
|
function! s:Bookmark.CacheBookmarks(silent)
|
||||||
|
if filereadable(g:NERDTreeBookmarksFile)
|
||||||
|
let g:NERDTreeBookmarks = []
|
||||||
|
let g:NERDTreeInvalidBookmarks = []
|
||||||
|
let bookmarkStrings = readfile(g:NERDTreeBookmarksFile)
|
||||||
|
let invalidBookmarksFound = 0
|
||||||
|
for i in bookmarkStrings
|
||||||
|
|
||||||
|
"ignore blank lines
|
||||||
|
if i != ''
|
||||||
|
|
||||||
|
let name = substitute(i, '^\(.\{-}\) .*$', '\1', '')
|
||||||
|
let path = substitute(i, '^.\{-} \(.*\)$', '\1', '')
|
||||||
|
|
||||||
|
try
|
||||||
|
let bookmark = s:Bookmark.New(name, g:NERDTreePath.New(path))
|
||||||
|
call add(g:NERDTreeBookmarks, bookmark)
|
||||||
|
catch /^NERDTree.InvalidArgumentsError/
|
||||||
|
call add(g:NERDTreeInvalidBookmarks, i)
|
||||||
|
let invalidBookmarksFound += 1
|
||||||
|
endtry
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
if invalidBookmarksFound
|
||||||
|
call s:Bookmark.Write()
|
||||||
|
if !a:silent
|
||||||
|
call nerdtree#echo(invalidBookmarksFound . " invalid bookmarks were read. See :help NERDTreeInvalidBookmarks for info.")
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
call s:Bookmark.Sort()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.compareTo(otherbookmark) {{{3
|
||||||
|
" Compare these two bookmarks for sorting purposes
|
||||||
|
function! s:Bookmark.compareTo(otherbookmark)
|
||||||
|
return a:otherbookmark.name < self.name
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.ClearAll() {{{3
|
||||||
|
" Class method to delete all bookmarks.
|
||||||
|
function! s:Bookmark.ClearAll()
|
||||||
|
for i in s:Bookmark.Bookmarks()
|
||||||
|
call i.delete()
|
||||||
|
endfor
|
||||||
|
call s:Bookmark.Write()
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.delete() {{{3
|
||||||
|
" Delete this bookmark. If the node for this bookmark is under the current
|
||||||
|
" root, then recache bookmarks for its Path object
|
||||||
|
function! s:Bookmark.delete()
|
||||||
|
let node = {}
|
||||||
|
try
|
||||||
|
let node = self.getNode(1)
|
||||||
|
catch /^NERDTree.BookmarkedNodeNotFoundError/
|
||||||
|
endtry
|
||||||
|
call remove(s:Bookmark.Bookmarks(), index(s:Bookmark.Bookmarks(), self))
|
||||||
|
if !empty(node)
|
||||||
|
call node.path.cacheDisplayString()
|
||||||
|
endif
|
||||||
|
call s:Bookmark.Write()
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.getNode(searchFromAbsoluteRoot) {{{3
|
||||||
|
" Gets the treenode for this bookmark
|
||||||
|
"
|
||||||
|
" Args:
|
||||||
|
" searchFromAbsoluteRoot: specifies whether we should search from the current
|
||||||
|
" tree root, or the highest cached node
|
||||||
|
function! s:Bookmark.getNode(searchFromAbsoluteRoot)
|
||||||
|
let searchRoot = a:searchFromAbsoluteRoot ? g:NERDTreeDirNode.AbsoluteTreeRoot() : b:NERDTreeRoot
|
||||||
|
let targetNode = searchRoot.findNode(self.path)
|
||||||
|
if empty(targetNode)
|
||||||
|
throw "NERDTree.BookmarkedNodeNotFoundError: no node was found for bookmark: " . self.name
|
||||||
|
endif
|
||||||
|
return targetNode
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.GetNodeForName(name, searchFromAbsoluteRoot) {{{3
|
||||||
|
" Class method that finds the bookmark with the given name and returns the
|
||||||
|
" treenode for it.
|
||||||
|
function! s:Bookmark.GetNodeForName(name, searchFromAbsoluteRoot)
|
||||||
|
let bookmark = s:Bookmark.BookmarkFor(a:name)
|
||||||
|
return bookmark.getNode(a:searchFromAbsoluteRoot)
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.GetSelected() {{{3
|
||||||
|
" returns the Bookmark the cursor is over, or {}
|
||||||
|
function! s:Bookmark.GetSelected()
|
||||||
|
let line = getline(".")
|
||||||
|
let name = substitute(line, '^>\(.\{-}\) .\+$', '\1', '')
|
||||||
|
if name != line
|
||||||
|
try
|
||||||
|
return s:Bookmark.BookmarkFor(name)
|
||||||
|
catch /^NERDTree.BookmarkNotFoundError/
|
||||||
|
return {}
|
||||||
|
endtry
|
||||||
|
endif
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
" Function: Bookmark.InvalidBookmarks() {{{3
|
||||||
|
" Class method to get all invalid bookmark strings read from the bookmarks
|
||||||
|
" file
|
||||||
|
function! s:Bookmark.InvalidBookmarks()
|
||||||
|
if !exists("g:NERDTreeInvalidBookmarks")
|
||||||
|
let g:NERDTreeInvalidBookmarks = []
|
||||||
|
endif
|
||||||
|
return g:NERDTreeInvalidBookmarks
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.mustExist() {{{3
|
||||||
|
function! s:Bookmark.mustExist()
|
||||||
|
if !self.path.exists()
|
||||||
|
call s:Bookmark.CacheBookmarks(1)
|
||||||
|
throw "NERDTree.BookmarkPointsToInvalidLocationError: the bookmark \"".
|
||||||
|
\ self.name ."\" points to a non existing location: \"". self.path.str()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.New(name, path) {{{3
|
||||||
|
" Create a new bookmark object with the given name and path object
|
||||||
|
function! s:Bookmark.New(name, path)
|
||||||
|
if a:name =~# ' '
|
||||||
|
throw "NERDTree.IllegalBookmarkNameError: illegal name:" . a:name
|
||||||
|
endif
|
||||||
|
|
||||||
|
let newBookmark = copy(self)
|
||||||
|
let newBookmark.name = a:name
|
||||||
|
let newBookmark.path = a:path
|
||||||
|
return newBookmark
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.open([options]) {{{3
|
||||||
|
"Args:
|
||||||
|
"A dictionary containing the following keys (all optional):
|
||||||
|
" 'where': Specifies whether the node should be opened in new split/tab or in
|
||||||
|
" the previous window. Can be either 'v' (vertical split), 'h'
|
||||||
|
" (horizontal split), 't' (new tab) or 'p' (previous window).
|
||||||
|
" 'reuse': if a window is displaying the file then jump the cursor there
|
||||||
|
" 'keepopen': dont close the tree window
|
||||||
|
" 'stay': open the file, but keep the cursor in the tree win
|
||||||
|
"
|
||||||
|
function! s:Bookmark.open(...)
|
||||||
|
let opts = a:0 ? a:1 : {}
|
||||||
|
|
||||||
|
if self.path.isDirectory && !has_key(opts, 'where')
|
||||||
|
call self.toRoot()
|
||||||
|
else
|
||||||
|
let opener = g:NERDTreeOpener.New(self.path, opts)
|
||||||
|
call opener.open(self)
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.openInNewTab(options) {{{3
|
||||||
|
" Create a new bookmark object with the given name and path object
|
||||||
|
function! s:Bookmark.openInNewTab(options)
|
||||||
|
call nerdtree#deprecated('Bookmark.openInNewTab', 'is deprecated, use open() instead')
|
||||||
|
call self.open(a:options)
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.setPath(path) {{{3
|
||||||
|
" makes this bookmark point to the given path
|
||||||
|
function! s:Bookmark.setPath(path)
|
||||||
|
let self.path = a:path
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.Sort() {{{3
|
||||||
|
" Class method that sorts all bookmarks
|
||||||
|
function! s:Bookmark.Sort()
|
||||||
|
let CompareFunc = function("nerdtree#compareBookmarks")
|
||||||
|
call sort(s:Bookmark.Bookmarks(), CompareFunc)
|
||||||
|
endfunction
|
||||||
|
" Function: Bookmark.str() {{{3
|
||||||
|
" Get the string that should be rendered in the view for this bookmark
|
||||||
|
function! s:Bookmark.str()
|
||||||
|
let pathStrMaxLen = winwidth(nerdtree#getTreeWinNum()) - 4 - len(self.name)
|
||||||
|
if &nu
|
||||||
|
let pathStrMaxLen = pathStrMaxLen - &numberwidth
|
||||||
|
endif
|
||||||
|
|
||||||
|
let pathStr = self.path.str({'format': 'UI'})
|
||||||
|
if len(pathStr) > pathStrMaxLen
|
||||||
|
let pathStr = '<' . strpart(pathStr, len(pathStr) - pathStrMaxLen)
|
||||||
|
endif
|
||||||
|
return '>' . self.name . ' ' . pathStr
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.toRoot() {{{3
|
||||||
|
" Make the node for this bookmark the new tree root
|
||||||
|
function! s:Bookmark.toRoot()
|
||||||
|
if self.validate()
|
||||||
|
try
|
||||||
|
let targetNode = self.getNode(1)
|
||||||
|
catch /^NERDTree.BookmarkedNodeNotFoundError/
|
||||||
|
let targetNode = g:NERDTreeFileNode.New(s:Bookmark.BookmarkFor(self.name).path)
|
||||||
|
endtry
|
||||||
|
call targetNode.makeRoot()
|
||||||
|
call nerdtree#renderView()
|
||||||
|
call targetNode.putCursorHere(0, 0)
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: Bookmark.ToRoot(name) {{{3
|
||||||
|
" Make the node for this bookmark the new tree root
|
||||||
|
function! s:Bookmark.ToRoot(name)
|
||||||
|
let bookmark = s:Bookmark.BookmarkFor(a:name)
|
||||||
|
call bookmark.toRoot()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
"FUNCTION: Bookmark.validate() {{{3
|
||||||
|
function! s:Bookmark.validate()
|
||||||
|
if self.path.exists()
|
||||||
|
return 1
|
||||||
|
else
|
||||||
|
call s:Bookmark.CacheBookmarks(1)
|
||||||
|
call nerdtree#renderView()
|
||||||
|
call s:echo(self.name . "now points to an invalid location. See :help NERDTreeInvalidBookmarks for info.")
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
" Function: Bookmark.Write() {{{3
|
||||||
|
" Class method to write all bookmarks to the bookmarks file
|
||||||
|
function! s:Bookmark.Write()
|
||||||
|
let bookmarkStrings = []
|
||||||
|
for i in s:Bookmark.Bookmarks()
|
||||||
|
call add(bookmarkStrings, i.name . ' ' . i.path.str())
|
||||||
|
endfor
|
||||||
|
|
||||||
|
"add a blank line before the invalid ones
|
||||||
|
call add(bookmarkStrings, "")
|
||||||
|
|
||||||
|
for j in s:Bookmark.InvalidBookmarks()
|
||||||
|
call add(bookmarkStrings, j)
|
||||||
|
endfor
|
||||||
|
call writefile(bookmarkStrings, g:NERDTreeBookmarksFile)
|
||||||
|
endfunction
|
147
plugin/nerdtree/key_map.vim
Normal file
147
plugin/nerdtree/key_map.vim
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
"CLASS: KeyMap {{{2
|
||||||
|
"============================================================
|
||||||
|
let s:KeyMap = {}
|
||||||
|
let g:NERDTreeKeyMap = s:KeyMap
|
||||||
|
"FUNCTION: KeyMap.All() {{{3
|
||||||
|
function! s:KeyMap.All()
|
||||||
|
if !exists("s:keyMaps")
|
||||||
|
let s:keyMaps = []
|
||||||
|
endif
|
||||||
|
return s:keyMaps
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.FindFor(key, scope) {{{3
|
||||||
|
function! s:KeyMap.FindFor(key, scope)
|
||||||
|
for i in s:KeyMap.All()
|
||||||
|
if i.key ==# a:key && i.scope ==# a:scope
|
||||||
|
return i
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.BindAll() {{{3
|
||||||
|
function! s:KeyMap.BindAll()
|
||||||
|
for i in s:KeyMap.All()
|
||||||
|
call i.bind()
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.bind() {{{3
|
||||||
|
function! s:KeyMap.bind()
|
||||||
|
" If the key sequence we're trying to map contains any '<>' notation, we
|
||||||
|
" must replace each of the '<' characters with '<lt>' to ensure the string
|
||||||
|
" is not translated into its corresponding keycode during the later part
|
||||||
|
" of the map command below
|
||||||
|
" :he <>
|
||||||
|
let specialNotationRegex = '\m<\([[:alnum:]_-]\+>\)'
|
||||||
|
if self.key =~# specialNotationRegex
|
||||||
|
let keymapInvokeString = substitute(self.key, specialNotationRegex, '<lt>\1', 'g')
|
||||||
|
else
|
||||||
|
let keymapInvokeString = self.key
|
||||||
|
endif
|
||||||
|
|
||||||
|
let premap = self.key == "<LeftRelease>" ? " <LeftRelease>" : " "
|
||||||
|
|
||||||
|
exec 'nnoremap <buffer> <silent> '. self.key . premap . ':call <SID>KeyMap_Invoke("'. keymapInvokeString .'")<cr>'
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.Remove(key, scope) {{{3
|
||||||
|
function! s:KeyMap.Remove(key, scope)
|
||||||
|
let maps = s:KeyMap.All()
|
||||||
|
for i in range(len(maps))
|
||||||
|
if maps[i].key ==# a:key && maps[i].scope ==# a:scope
|
||||||
|
return remove(maps, i)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: KeyMap.invoke() {{{3
|
||||||
|
"Call the KeyMaps callback function
|
||||||
|
function! s:KeyMap.invoke(...)
|
||||||
|
let Callback = function(self.callback)
|
||||||
|
if a:0
|
||||||
|
call Callback(a:1)
|
||||||
|
else
|
||||||
|
call Callback()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.Invoke() {{{3
|
||||||
|
"Find a keymapping for a:key and the current scope invoke it.
|
||||||
|
"
|
||||||
|
"Scope is determined as follows:
|
||||||
|
" * if the cursor is on a dir node then "DirNode"
|
||||||
|
" * if the cursor is on a file node then "FileNode"
|
||||||
|
" * if the cursor is on a bookmark then "Bookmark"
|
||||||
|
"
|
||||||
|
"If a keymap has the scope of "all" then it will be called if no other keymap
|
||||||
|
"is found for a:key and the scope.
|
||||||
|
function! s:KeyMap.Invoke(key)
|
||||||
|
let node = g:NERDTreeFileNode.GetSelected()
|
||||||
|
if !empty(node)
|
||||||
|
|
||||||
|
"try file node
|
||||||
|
if !node.path.isDirectory
|
||||||
|
let km = s:KeyMap.FindFor(a:key, "FileNode")
|
||||||
|
if !empty(km)
|
||||||
|
return km.invoke(node)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
"try dir node
|
||||||
|
if node.path.isDirectory
|
||||||
|
let km = s:KeyMap.FindFor(a:key, "DirNode")
|
||||||
|
if !empty(km)
|
||||||
|
return km.invoke(node)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
"try generic node
|
||||||
|
let km = s:KeyMap.FindFor(a:key, "Node")
|
||||||
|
if !empty(km)
|
||||||
|
return km.invoke(node)
|
||||||
|
endif
|
||||||
|
|
||||||
|
endif
|
||||||
|
|
||||||
|
"try bookmark
|
||||||
|
let bm = g:NERDTreeBookmark.GetSelected()
|
||||||
|
if !empty(bm)
|
||||||
|
let km = s:KeyMap.FindFor(a:key, "Bookmark")
|
||||||
|
if !empty(km)
|
||||||
|
return km.invoke(bm)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
"try all
|
||||||
|
let km = s:KeyMap.FindFor(a:key, "all")
|
||||||
|
if !empty(km)
|
||||||
|
return km.invoke()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"this is needed since I cant figure out how to invoke dict functions from a
|
||||||
|
"key map
|
||||||
|
function! s:KeyMap_Invoke(key)
|
||||||
|
call s:KeyMap.Invoke(a:key)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.Create(options) {{{3
|
||||||
|
function! s:KeyMap.Create(options)
|
||||||
|
let newKeyMap = copy(self)
|
||||||
|
let opts = extend({'scope': 'all', 'quickhelpText': ''}, copy(a:options))
|
||||||
|
let newKeyMap.key = opts['key']
|
||||||
|
let newKeyMap.quickhelpText = opts['quickhelpText']
|
||||||
|
let newKeyMap.callback = opts['callback']
|
||||||
|
let newKeyMap.scope = opts['scope']
|
||||||
|
|
||||||
|
call s:KeyMap.Add(newKeyMap)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: KeyMap.Add(keymap) {{{3
|
||||||
|
function! s:KeyMap.Add(keymap)
|
||||||
|
call s:KeyMap.Remove(a:keymap.key, a:keymap.scope)
|
||||||
|
call add(s:KeyMap.All(), a:keymap)
|
||||||
|
endfunction
|
||||||
|
|
178
plugin/nerdtree/menu_controller.vim
Normal file
178
plugin/nerdtree/menu_controller.vim
Normal file
@ -0,0 +1,178 @@
|
|||||||
|
"CLASS: MenuController {{{2
|
||||||
|
"============================================================
|
||||||
|
let s:MenuController = {}
|
||||||
|
let g:NERDTreeMenuController = s:MenuController
|
||||||
|
"FUNCTION: MenuController.New(menuItems) {{{3
|
||||||
|
"create a new menu controller that operates on the given menu items
|
||||||
|
function! s:MenuController.New(menuItems)
|
||||||
|
let newMenuController = copy(self)
|
||||||
|
if a:menuItems[0].isSeparator()
|
||||||
|
let newMenuController.menuItems = a:menuItems[1:-1]
|
||||||
|
else
|
||||||
|
let newMenuController.menuItems = a:menuItems
|
||||||
|
endif
|
||||||
|
return newMenuController
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController.showMenu() {{{3
|
||||||
|
"start the main loop of the menu and get the user to choose/execute a menu
|
||||||
|
"item
|
||||||
|
function! s:MenuController.showMenu()
|
||||||
|
call self._saveOptions()
|
||||||
|
|
||||||
|
try
|
||||||
|
let self.selection = 0
|
||||||
|
|
||||||
|
let done = 0
|
||||||
|
while !done
|
||||||
|
redraw!
|
||||||
|
call self._echoPrompt()
|
||||||
|
let key = nr2char(getchar())
|
||||||
|
let done = self._handleKeypress(key)
|
||||||
|
endwhile
|
||||||
|
finally
|
||||||
|
call self._restoreOptions()
|
||||||
|
endtry
|
||||||
|
|
||||||
|
if self.selection != -1
|
||||||
|
let m = self._current()
|
||||||
|
call m.execute()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._echoPrompt() {{{3
|
||||||
|
function! s:MenuController._echoPrompt()
|
||||||
|
echo "NERDTree Menu. Use j/k/enter and the shortcuts indicated"
|
||||||
|
echo "=========================================================="
|
||||||
|
|
||||||
|
for i in range(0, len(self.menuItems)-1)
|
||||||
|
if self.selection == i
|
||||||
|
echo "> " . self.menuItems[i].text
|
||||||
|
else
|
||||||
|
echo " " . self.menuItems[i].text
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._current(key) {{{3
|
||||||
|
"get the MenuItem that is currently selected
|
||||||
|
function! s:MenuController._current()
|
||||||
|
return self.menuItems[self.selection]
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._handleKeypress(key) {{{3
|
||||||
|
"change the selection (if appropriate) and return 1 if the user has made
|
||||||
|
"their choice, 0 otherwise
|
||||||
|
function! s:MenuController._handleKeypress(key)
|
||||||
|
if a:key == 'j'
|
||||||
|
call self._cursorDown()
|
||||||
|
elseif a:key == 'k'
|
||||||
|
call self._cursorUp()
|
||||||
|
elseif a:key == nr2char(27) "escape
|
||||||
|
let self.selection = -1
|
||||||
|
return 1
|
||||||
|
elseif a:key == "\r" || a:key == "\n" "enter and ctrl-j
|
||||||
|
return 1
|
||||||
|
else
|
||||||
|
let index = self._nextIndexFor(a:key)
|
||||||
|
if index != -1
|
||||||
|
let self.selection = index
|
||||||
|
if len(self._allIndexesFor(a:key)) == 1
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
return 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._allIndexesFor(shortcut) {{{3
|
||||||
|
"get indexes to all menu items with the given shortcut
|
||||||
|
function! s:MenuController._allIndexesFor(shortcut)
|
||||||
|
let toReturn = []
|
||||||
|
|
||||||
|
for i in range(0, len(self.menuItems)-1)
|
||||||
|
if self.menuItems[i].shortcut == a:shortcut
|
||||||
|
call add(toReturn, i)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._nextIndexFor(shortcut) {{{3
|
||||||
|
"get the index to the next menu item with the given shortcut, starts from the
|
||||||
|
"current cursor location and wraps around to the top again if need be
|
||||||
|
function! s:MenuController._nextIndexFor(shortcut)
|
||||||
|
for i in range(self.selection+1, len(self.menuItems)-1)
|
||||||
|
if self.menuItems[i].shortcut == a:shortcut
|
||||||
|
return i
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
for i in range(0, self.selection)
|
||||||
|
if self.menuItems[i].shortcut == a:shortcut
|
||||||
|
return i
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
return -1
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._setCmdheight() {{{3
|
||||||
|
"sets &cmdheight to whatever is needed to display the menu
|
||||||
|
function! s:MenuController._setCmdheight()
|
||||||
|
let &cmdheight = len(self.menuItems) + 3
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._saveOptions() {{{3
|
||||||
|
"set any vim options that are required to make the menu work (saving their old
|
||||||
|
"values)
|
||||||
|
function! s:MenuController._saveOptions()
|
||||||
|
let self._oldLazyredraw = &lazyredraw
|
||||||
|
let self._oldCmdheight = &cmdheight
|
||||||
|
set nolazyredraw
|
||||||
|
call self._setCmdheight()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._restoreOptions() {{{3
|
||||||
|
"restore the options we saved in _saveOptions()
|
||||||
|
function! s:MenuController._restoreOptions()
|
||||||
|
let &cmdheight = self._oldCmdheight
|
||||||
|
let &lazyredraw = self._oldLazyredraw
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._cursorDown() {{{3
|
||||||
|
"move the cursor to the next menu item, skipping separators
|
||||||
|
function! s:MenuController._cursorDown()
|
||||||
|
let done = 0
|
||||||
|
while !done
|
||||||
|
if self.selection < len(self.menuItems)-1
|
||||||
|
let self.selection += 1
|
||||||
|
else
|
||||||
|
let self.selection = 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
if !self._current().isSeparator()
|
||||||
|
let done = 1
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuController._cursorUp() {{{3
|
||||||
|
"move the cursor to the previous menu item, skipping separators
|
||||||
|
function! s:MenuController._cursorUp()
|
||||||
|
let done = 0
|
||||||
|
while !done
|
||||||
|
if self.selection > 0
|
||||||
|
let self.selection -= 1
|
||||||
|
else
|
||||||
|
let self.selection = len(self.menuItems)-1
|
||||||
|
endif
|
||||||
|
|
||||||
|
if !self._current().isSeparator()
|
||||||
|
let done = 1
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
endfunction
|
||||||
|
|
112
plugin/nerdtree/menu_item.vim
Normal file
112
plugin/nerdtree/menu_item.vim
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
"CLASS: MenuItem {{{2
|
||||||
|
"============================================================
|
||||||
|
let s:MenuItem = {}
|
||||||
|
let g:NERDTreeMenuItem = s:MenuItem
|
||||||
|
"FUNCTION: MenuItem.All() {{{3
|
||||||
|
"get all top level menu items
|
||||||
|
function! s:MenuItem.All()
|
||||||
|
if !exists("s:menuItems")
|
||||||
|
let s:menuItems = []
|
||||||
|
endif
|
||||||
|
return s:menuItems
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.AllEnabled() {{{3
|
||||||
|
"get all top level menu items that are currently enabled
|
||||||
|
function! s:MenuItem.AllEnabled()
|
||||||
|
let toReturn = []
|
||||||
|
for i in s:MenuItem.All()
|
||||||
|
if i.enabled()
|
||||||
|
call add(toReturn, i)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.Create(options) {{{3
|
||||||
|
"make a new menu item and add it to the global list
|
||||||
|
function! s:MenuItem.Create(options)
|
||||||
|
let newMenuItem = copy(self)
|
||||||
|
|
||||||
|
let newMenuItem.text = a:options['text']
|
||||||
|
let newMenuItem.shortcut = a:options['shortcut']
|
||||||
|
let newMenuItem.children = []
|
||||||
|
|
||||||
|
let newMenuItem.isActiveCallback = -1
|
||||||
|
if has_key(a:options, 'isActiveCallback')
|
||||||
|
let newMenuItem.isActiveCallback = a:options['isActiveCallback']
|
||||||
|
endif
|
||||||
|
|
||||||
|
let newMenuItem.callback = -1
|
||||||
|
if has_key(a:options, 'callback')
|
||||||
|
let newMenuItem.callback = a:options['callback']
|
||||||
|
endif
|
||||||
|
|
||||||
|
if has_key(a:options, 'parent')
|
||||||
|
call add(a:options['parent'].children, newMenuItem)
|
||||||
|
else
|
||||||
|
call add(s:MenuItem.All(), newMenuItem)
|
||||||
|
endif
|
||||||
|
|
||||||
|
return newMenuItem
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.CreateSeparator(options) {{{3
|
||||||
|
"make a new separator menu item and add it to the global list
|
||||||
|
function! s:MenuItem.CreateSeparator(options)
|
||||||
|
let standard_options = { 'text': '--------------------',
|
||||||
|
\ 'shortcut': -1,
|
||||||
|
\ 'callback': -1 }
|
||||||
|
let options = extend(a:options, standard_options, "force")
|
||||||
|
|
||||||
|
return s:MenuItem.Create(options)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.CreateSubmenu(options) {{{3
|
||||||
|
"make a new submenu and add it to global list
|
||||||
|
function! s:MenuItem.CreateSubmenu(options)
|
||||||
|
let standard_options = { 'callback': -1 }
|
||||||
|
let options = extend(a:options, standard_options, "force")
|
||||||
|
|
||||||
|
return s:MenuItem.Create(options)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.enabled() {{{3
|
||||||
|
"return 1 if this menu item should be displayed
|
||||||
|
"
|
||||||
|
"delegates off to the isActiveCallback, and defaults to 1 if no callback was
|
||||||
|
"specified
|
||||||
|
function! s:MenuItem.enabled()
|
||||||
|
if self.isActiveCallback != -1
|
||||||
|
return {self.isActiveCallback}()
|
||||||
|
endif
|
||||||
|
return 1
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.execute() {{{3
|
||||||
|
"perform the action behind this menu item, if this menuitem has children then
|
||||||
|
"display a new menu for them, otherwise deletegate off to the menuitem's
|
||||||
|
"callback
|
||||||
|
function! s:MenuItem.execute()
|
||||||
|
if len(self.children)
|
||||||
|
let mc = s:MenuController.New(self.children)
|
||||||
|
call mc.showMenu()
|
||||||
|
else
|
||||||
|
if self.callback != -1
|
||||||
|
call {self.callback}()
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.isSeparator() {{{3
|
||||||
|
"return 1 if this menuitem is a separator
|
||||||
|
function! s:MenuItem.isSeparator()
|
||||||
|
return self.callback == -1 && self.children == []
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: MenuItem.isSubmenu() {{{3
|
||||||
|
"return 1 if this menuitem is a submenu
|
||||||
|
function! s:MenuItem.isSubmenu()
|
||||||
|
return self.callback == -1 && !empty(self.children)
|
||||||
|
endfunction
|
||||||
|
|
263
plugin/nerdtree/opener.vim
Normal file
263
plugin/nerdtree/opener.vim
Normal file
@ -0,0 +1,263 @@
|
|||||||
|
"CLASS: Opener {{{2
|
||||||
|
"============================================================
|
||||||
|
let s:Opener = {}
|
||||||
|
let g:NERDTreeOpener = s:Opener
|
||||||
|
|
||||||
|
"FUNCTION: Opener._checkToCloseTree(newtab) {{{3
|
||||||
|
"Check the class options and global options (i.e. NERDTreeQuitOnOpen) to see
|
||||||
|
"if the tree should be closed now.
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"a:newtab - boolean. If set, only close the tree now if we are opening the
|
||||||
|
"target in a new tab. This is needed because we have to close tree before we
|
||||||
|
"leave the tab
|
||||||
|
function! s:Opener._checkToCloseTree(newtab)
|
||||||
|
if self._keepopen
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
|
if (a:newtab && self._where == 't') || !a:newtab
|
||||||
|
call nerdtree#closeTreeIfQuitOnOpen()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._gotoTargetWin() {{{3
|
||||||
|
function! s:Opener._gotoTargetWin()
|
||||||
|
if b:NERDTreeType ==# "secondary"
|
||||||
|
if self._where == 'v'
|
||||||
|
vsplit
|
||||||
|
elseif self._where == 'h'
|
||||||
|
split
|
||||||
|
elseif self._where == 't'
|
||||||
|
tabnew
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
call self._checkToCloseTree(1)
|
||||||
|
|
||||||
|
if self._where == 'v'
|
||||||
|
call self._newVSplit()
|
||||||
|
elseif self._where == 'h'
|
||||||
|
call self._newSplit()
|
||||||
|
elseif self._where == 't'
|
||||||
|
tabnew
|
||||||
|
elseif self._where == 'p'
|
||||||
|
call self._previousWindow()
|
||||||
|
endif
|
||||||
|
|
||||||
|
call self._checkToCloseTree(0)
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener.New(path, opts) {{{3
|
||||||
|
"Args:
|
||||||
|
"
|
||||||
|
"a:path: The path object that is to be opened.
|
||||||
|
"
|
||||||
|
"a:opts:
|
||||||
|
"
|
||||||
|
"A dictionary containing the following keys (all optional):
|
||||||
|
" 'where': Specifies whether the node should be opened in new split/tab or in
|
||||||
|
" the previous window. Can be either 'v' or 'h' or 't' (for open in
|
||||||
|
" new tab)
|
||||||
|
" 'reuse': if a window is displaying the file then jump the cursor there
|
||||||
|
" 'keepopen': dont close the tree window
|
||||||
|
" 'stay': open the file, but keep the cursor in the tree win
|
||||||
|
function! s:Opener.New(path, opts)
|
||||||
|
let newObj = copy(self)
|
||||||
|
|
||||||
|
let newObj._path = a:path
|
||||||
|
let newObj._stay = nerdtree#has_opt(a:opts, 'stay')
|
||||||
|
let newObj._reuse = nerdtree#has_opt(a:opts, 'reuse')
|
||||||
|
let newObj._keepopen = nerdtree#has_opt(a:opts, 'keepopen')
|
||||||
|
let newObj._where = has_key(a:opts, 'where') ? a:opts['where'] : ''
|
||||||
|
let newObj._treetype = b:NERDTreeType
|
||||||
|
call newObj._saveCursorPos()
|
||||||
|
|
||||||
|
return newObj
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._newSplit() {{{3
|
||||||
|
function! s:Opener._newSplit()
|
||||||
|
" Save the user's settings for splitbelow and splitright
|
||||||
|
let savesplitbelow=&splitbelow
|
||||||
|
let savesplitright=&splitright
|
||||||
|
|
||||||
|
" '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.
|
||||||
|
"
|
||||||
|
let there= g:NERDTreeWinPos ==# "left" ? "wincmd h" : "wincmd l"
|
||||||
|
let back = g:NERDTreeWinPos ==# "left" ? "wincmd l" : "wincmd h"
|
||||||
|
let right= g:NERDTreeWinPos ==# "left"
|
||||||
|
let below=0
|
||||||
|
|
||||||
|
" Attempt to go to adjacent window
|
||||||
|
call nerdtree#exec(back)
|
||||||
|
|
||||||
|
let onlyOneWin = (winnr("$") ==# 1)
|
||||||
|
|
||||||
|
" 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
|
||||||
|
|
||||||
|
let splitMode = onlyOneWin ? "vertical" : ""
|
||||||
|
|
||||||
|
" Open the new window
|
||||||
|
try
|
||||||
|
exec(splitMode." sp ")
|
||||||
|
catch /^Vim\%((\a\+)\)\=:E37/
|
||||||
|
call nerdtree#putCursorInTreeWin()
|
||||||
|
throw "NERDTree.FileAlreadyOpenAndModifiedError: ". self._path.str() ." is already open and modified."
|
||||||
|
catch /^Vim\%((\a\+)\)\=:/
|
||||||
|
"do nothing
|
||||||
|
endtry
|
||||||
|
|
||||||
|
"resize the tree window if no other window was open before
|
||||||
|
if onlyOneWin
|
||||||
|
let size = exists("b:NERDTreeOldWindowSize") ? b:NERDTreeOldWindowSize : g:NERDTreeWinSize
|
||||||
|
call nerdtree#exec(there)
|
||||||
|
exec("silent ". splitMode ." resize ". size)
|
||||||
|
call nerdtree#exec('wincmd p')
|
||||||
|
endif
|
||||||
|
|
||||||
|
" Restore splitmode settings
|
||||||
|
let &splitbelow=savesplitbelow
|
||||||
|
let &splitright=savesplitright
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._newVSplit() {{{3
|
||||||
|
function! s:Opener._newVSplit()
|
||||||
|
let winwidth = winwidth(".")
|
||||||
|
if winnr("$")==#1
|
||||||
|
let winwidth = g:NERDTreeWinSize
|
||||||
|
endif
|
||||||
|
|
||||||
|
call nerdtree#exec("wincmd p")
|
||||||
|
vnew
|
||||||
|
|
||||||
|
"resize the nerd tree back to the original size
|
||||||
|
call nerdtree#putCursorInTreeWin()
|
||||||
|
exec("silent vertical resize ". winwidth)
|
||||||
|
call nerdtree#exec('wincmd p')
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener.open(target) {{{3
|
||||||
|
function! s:Opener.open(target)
|
||||||
|
if self._path.isDirectory
|
||||||
|
call self._openDirectory(a:target)
|
||||||
|
else
|
||||||
|
call self._openFile()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._openFile() {{{3
|
||||||
|
function! s:Opener._openFile()
|
||||||
|
if self._reuse && self._reuseWindow()
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
|
call self._gotoTargetWin()
|
||||||
|
|
||||||
|
if self._treetype ==# "secondary"
|
||||||
|
call self._path.edit()
|
||||||
|
else
|
||||||
|
call self._path.edit()
|
||||||
|
|
||||||
|
|
||||||
|
if self._stay
|
||||||
|
call self._restoreCursorPos()
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._openDirectory(node) {{{3
|
||||||
|
function! s:Opener._openDirectory(node)
|
||||||
|
if self._treetype ==# "secondary"
|
||||||
|
call self._gotoTargetWin()
|
||||||
|
call nerdtree#initNerdTreeInPlace(a:node.path.str())
|
||||||
|
else
|
||||||
|
call self._gotoTargetWin()
|
||||||
|
if empty(self._where)
|
||||||
|
call a:node.makeRoot()
|
||||||
|
call nerdtree#renderView()
|
||||||
|
call a:node.putCursorHere(0, 0)
|
||||||
|
elseif self._where == 't'
|
||||||
|
call nerdtree#initNerdTree(a:node.path.str())
|
||||||
|
else
|
||||||
|
call nerdtree#initNerdTreeInPlace(a:node.path.str())
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
if self._stay
|
||||||
|
call self._restoreCursorPos()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._previousWindow() {{{3
|
||||||
|
function! s:Opener._previousWindow()
|
||||||
|
if !nerdtree#isWindowUsable(winnr("#")) && nerdtree#firstUsableWindow() ==# -1
|
||||||
|
call self._newSplit()
|
||||||
|
else
|
||||||
|
try
|
||||||
|
if !nerdtree#isWindowUsable(winnr("#"))
|
||||||
|
call nerdtree#exec(nerdtree#firstUsableWindow() . "wincmd w")
|
||||||
|
else
|
||||||
|
call nerdtree#exec('wincmd p')
|
||||||
|
endif
|
||||||
|
catch /^Vim\%((\a\+)\)\=:E37/
|
||||||
|
call nerdtree#putCursorInTreeWin()
|
||||||
|
throw "NERDTree.FileAlreadyOpenAndModifiedError: ". self._path.str() ." is already open and modified."
|
||||||
|
catch /^Vim\%((\a\+)\)\=:/
|
||||||
|
echo v:exception
|
||||||
|
endtry
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._restoreCursorPos(){{{3
|
||||||
|
function! s:Opener._restoreCursorPos()
|
||||||
|
call nerdtree#exec('normal ' . self._tabnr . 'gt')
|
||||||
|
call nerdtree#exec(bufwinnr(self._bufnr) . 'wincmd w')
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._reuseWindow(){{{3
|
||||||
|
"put the cursor in the first window we find for this file
|
||||||
|
"
|
||||||
|
"return 1 if we were successful
|
||||||
|
function! s:Opener._reuseWindow()
|
||||||
|
"check the current tab for the window
|
||||||
|
let winnr = bufwinnr('^' . self._path.str() . '$')
|
||||||
|
if winnr != -1
|
||||||
|
call nerdtree#exec(winnr . "wincmd w")
|
||||||
|
call self._checkToCloseTree(0)
|
||||||
|
return 1
|
||||||
|
else
|
||||||
|
"check other tabs
|
||||||
|
let tabnr = self._path.tabnr()
|
||||||
|
if tabnr
|
||||||
|
call self._checkToCloseTree(1)
|
||||||
|
call nerdtree#exec('normal! ' . tabnr . 'gt')
|
||||||
|
let winnr = bufwinnr('^' . self._path.str() . '$')
|
||||||
|
call nerdtree#exec(winnr . "wincmd w")
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
return 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Opener._saveCursorPos(){{{3
|
||||||
|
function! s:Opener._saveCursorPos()
|
||||||
|
let self._bufnr = bufnr("")
|
||||||
|
let self._tabnr = tabpagenr()
|
||||||
|
endfunction
|
||||||
|
|
695
plugin/nerdtree/path.vim
Normal file
695
plugin/nerdtree/path.vim
Normal file
@ -0,0 +1,695 @@
|
|||||||
|
"we need to use this number many times for sorting... so we calculate it only
|
||||||
|
"once here
|
||||||
|
let s:NERDTreeSortStarIndex = index(g:NERDTreeSortOrder, '*')
|
||||||
|
|
||||||
|
"CLASS: Path {{{2
|
||||||
|
"============================================================
|
||||||
|
let s:Path = {}
|
||||||
|
let g:NERDTreePath = s:Path
|
||||||
|
"FUNCTION: Path.AbsolutePathFor(str) {{{3
|
||||||
|
function! s:Path.AbsolutePathFor(str)
|
||||||
|
let prependCWD = 0
|
||||||
|
if nerdtree#runningWindows()
|
||||||
|
let prependCWD = a:str !~# '^.:\(\\\|\/\)' && a:str !~# '^\(\\\\\|\/\/\)'
|
||||||
|
else
|
||||||
|
let prependCWD = a:str !~# '^/'
|
||||||
|
endif
|
||||||
|
|
||||||
|
let toReturn = a:str
|
||||||
|
if prependCWD
|
||||||
|
let toReturn = getcwd() . s:Path.Slash() . a:str
|
||||||
|
endif
|
||||||
|
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.bookmarkNames() {{{3
|
||||||
|
function! s:Path.bookmarkNames()
|
||||||
|
if !exists("self._bookmarkNames")
|
||||||
|
call self.cacheDisplayString()
|
||||||
|
endif
|
||||||
|
return self._bookmarkNames
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.cacheDisplayString() {{{3
|
||||||
|
function! s:Path.cacheDisplayString()
|
||||||
|
let self.cachedDisplayString = self.getLastPathComponent(1)
|
||||||
|
|
||||||
|
if self.isExecutable
|
||||||
|
let self.cachedDisplayString = self.cachedDisplayString . '*'
|
||||||
|
endif
|
||||||
|
|
||||||
|
let self._bookmarkNames = []
|
||||||
|
for i in g:NERDTreeBookmark.Bookmarks()
|
||||||
|
if i.path.equals(self)
|
||||||
|
call add(self._bookmarkNames, i.name)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
if !empty(self._bookmarkNames)
|
||||||
|
let self.cachedDisplayString .= ' {' . join(self._bookmarkNames) . '}'
|
||||||
|
endif
|
||||||
|
|
||||||
|
if self.isSymLink
|
||||||
|
let self.cachedDisplayString .= ' -> ' . self.symLinkDest
|
||||||
|
endif
|
||||||
|
|
||||||
|
if self.isReadOnly
|
||||||
|
let self.cachedDisplayString .= ' [RO]'
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.changeToDir() {{{3
|
||||||
|
function! s:Path.changeToDir()
|
||||||
|
let dir = self.str({'format': 'Cd'})
|
||||||
|
if self.isDirectory ==# 0
|
||||||
|
let dir = self.getParent().str({'format': 'Cd'})
|
||||||
|
endif
|
||||||
|
|
||||||
|
try
|
||||||
|
execute "cd " . dir
|
||||||
|
call s:echo("CWD is now: " . getcwd())
|
||||||
|
catch
|
||||||
|
throw "NERDTree.PathChangeError: cannot change CWD to " . dir
|
||||||
|
endtry
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.compareTo() {{{3
|
||||||
|
"
|
||||||
|
"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".
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"path: the path object to compare this to
|
||||||
|
"
|
||||||
|
"Return:
|
||||||
|
"1, -1 or 0
|
||||||
|
function! s:Path.compareTo(path)
|
||||||
|
let thisPath = self.getLastPathComponent(1)
|
||||||
|
let thatPath = a:path.getLastPathComponent(1)
|
||||||
|
|
||||||
|
"if the paths are the same then clearly we return 0
|
||||||
|
if thisPath ==# thatPath
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
let thisSS = self.getSortOrderIndex()
|
||||||
|
let thatSS = a:path.getSortOrderIndex()
|
||||||
|
|
||||||
|
"compare the sort sequences, if they are different then the return
|
||||||
|
"value is easy
|
||||||
|
if thisSS < thatSS
|
||||||
|
return -1
|
||||||
|
elseif thisSS > thatSS
|
||||||
|
return 1
|
||||||
|
else
|
||||||
|
"if the sort sequences are the same then compare the paths
|
||||||
|
"alphabetically
|
||||||
|
let pathCompare = g:NERDTreeCaseSensitiveSort ? thisPath <# thatPath : thisPath <? thatPath
|
||||||
|
if pathCompare
|
||||||
|
return -1
|
||||||
|
else
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.Create(fullpath) {{{3
|
||||||
|
"
|
||||||
|
"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
|
||||||
|
function! s:Path.Create(fullpath)
|
||||||
|
"bail if the a:fullpath already exists
|
||||||
|
if isdirectory(a:fullpath) || filereadable(a:fullpath)
|
||||||
|
throw "NERDTree.CreatePathError: Directory Exists: '" . a:fullpath . "'"
|
||||||
|
endif
|
||||||
|
|
||||||
|
try
|
||||||
|
|
||||||
|
"if it ends with a slash, assume its a dir create it
|
||||||
|
if a:fullpath =~# '\(\\\|\/\)$'
|
||||||
|
"whack the trailing slash off the end if it exists
|
||||||
|
let fullpath = substitute(a:fullpath, '\(\\\|\/\)$', '', '')
|
||||||
|
|
||||||
|
call mkdir(fullpath, 'p')
|
||||||
|
|
||||||
|
"assume its a file and create
|
||||||
|
else
|
||||||
|
call writefile([], a:fullpath)
|
||||||
|
endif
|
||||||
|
catch
|
||||||
|
throw "NERDTree.CreatePathError: Could not create path: '" . a:fullpath . "'"
|
||||||
|
endtry
|
||||||
|
|
||||||
|
return s:Path.New(a:fullpath)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.copy(dest) {{{3
|
||||||
|
"
|
||||||
|
"Copies the file/dir represented by this Path to the given location
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"dest: the location to copy this dir/file to
|
||||||
|
function! s:Path.copy(dest)
|
||||||
|
if !s:Path.CopyingSupported()
|
||||||
|
throw "NERDTree.CopyingNotSupportedError: Copying is not supported on this OS"
|
||||||
|
endif
|
||||||
|
|
||||||
|
let dest = s:Path.WinToUnixPath(a:dest)
|
||||||
|
|
||||||
|
let cmd = g:NERDTreeCopyCmd . " " . escape(self.str(), nerdtree#escChars()) . " " . escape(dest, nerdtree#escChars())
|
||||||
|
let success = system(cmd)
|
||||||
|
if success != 0
|
||||||
|
throw "NERDTree.CopyError: Could not copy ''". self.str() ."'' to: '" . a:dest . "'"
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.CopyingSupported() {{{3
|
||||||
|
"
|
||||||
|
"returns 1 if copying is supported for this OS
|
||||||
|
function! s:Path.CopyingSupported()
|
||||||
|
return exists('g:NERDTreeCopyCmd')
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
"FUNCTION: Path.copyingWillOverwrite(dest) {{{3
|
||||||
|
"
|
||||||
|
"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
|
||||||
|
function! s:Path.copyingWillOverwrite(dest)
|
||||||
|
if filereadable(a:dest)
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
if isdirectory(a:dest)
|
||||||
|
let path = s:Path.JoinPathStrings(a:dest, self.getLastPathComponent(0))
|
||||||
|
if filereadable(path)
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.delete() {{{3
|
||||||
|
"
|
||||||
|
"Deletes the file represented by this path.
|
||||||
|
"Deletion of directories is not supported
|
||||||
|
"
|
||||||
|
"Throws NERDTree.Path.Deletion exceptions
|
||||||
|
function! s:Path.delete()
|
||||||
|
if self.isDirectory
|
||||||
|
|
||||||
|
let cmd = g:NERDTreeRemoveDirCmd . self.str({'escape': 1})
|
||||||
|
let success = system(cmd)
|
||||||
|
|
||||||
|
if v:shell_error != 0
|
||||||
|
throw "NERDTree.PathDeletionError: Could not delete directory: '" . self.str() . "'"
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
let success = delete(self.str())
|
||||||
|
if success != 0
|
||||||
|
throw "NERDTree.PathDeletionError: Could not delete file: '" . self.str() . "'"
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
"delete all bookmarks for this path
|
||||||
|
for i in self.bookmarkNames()
|
||||||
|
let bookmark = g:NERDTreeBookmark.BookmarkFor(i)
|
||||||
|
call bookmark.delete()
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.displayString() {{{3
|
||||||
|
"
|
||||||
|
"Returns a string that specifies how the path should be represented as a
|
||||||
|
"string
|
||||||
|
function! s:Path.displayString()
|
||||||
|
if self.cachedDisplayString ==# ""
|
||||||
|
call self.cacheDisplayString()
|
||||||
|
endif
|
||||||
|
|
||||||
|
return self.cachedDisplayString
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.edit() {{{3
|
||||||
|
function! s:Path.edit()
|
||||||
|
exec "edit " . self.str({'format': 'Edit'})
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.extractDriveLetter(fullpath) {{{3
|
||||||
|
"
|
||||||
|
"If running windows, cache the drive letter for this path
|
||||||
|
function! s:Path.extractDriveLetter(fullpath)
|
||||||
|
if nerdtree#runningWindows()
|
||||||
|
if a:fullpath =~ '^\(\\\\\|\/\/\)'
|
||||||
|
"For network shares, the 'drive' consists of the first two parts of the path, i.e. \\boxname\share
|
||||||
|
let self.drive = substitute(a:fullpath, '^\(\(\\\\\|\/\/\)[^\\\/]*\(\\\|\/\)[^\\\/]*\).*', '\1', '')
|
||||||
|
let self.drive = substitute(self.drive, '/', '\', "g")
|
||||||
|
else
|
||||||
|
let self.drive = substitute(a:fullpath, '\(^[a-zA-Z]:\).*', '\1', '')
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
let self.drive = ''
|
||||||
|
endif
|
||||||
|
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.exists() {{{3
|
||||||
|
"return 1 if this path points to a location that is readable or is a directory
|
||||||
|
function! s:Path.exists()
|
||||||
|
let p = self.str()
|
||||||
|
return filereadable(p) || isdirectory(p)
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.getDir() {{{3
|
||||||
|
"
|
||||||
|
"Returns this path if it is a directory, else this paths parent.
|
||||||
|
"
|
||||||
|
"Return:
|
||||||
|
"a Path object
|
||||||
|
function! s:Path.getDir()
|
||||||
|
if self.isDirectory
|
||||||
|
return self
|
||||||
|
else
|
||||||
|
return self.getParent()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.getParent() {{{3
|
||||||
|
"
|
||||||
|
"Returns a new path object for this paths parent
|
||||||
|
"
|
||||||
|
"Return:
|
||||||
|
"a new Path object
|
||||||
|
function! s:Path.getParent()
|
||||||
|
if nerdtree#runningWindows()
|
||||||
|
let path = self.drive . '\' . join(self.pathSegments[0:-2], '\')
|
||||||
|
else
|
||||||
|
let path = '/'. join(self.pathSegments[0:-2], '/')
|
||||||
|
endif
|
||||||
|
|
||||||
|
return s:Path.New(path)
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.getLastPathComponent(dirSlash) {{{3
|
||||||
|
"
|
||||||
|
"Gets the last part of this path.
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"dirSlash: if 1 then a trailing slash will be added to the returned value for
|
||||||
|
"directory nodes.
|
||||||
|
function! s:Path.getLastPathComponent(dirSlash)
|
||||||
|
if empty(self.pathSegments)
|
||||||
|
return ''
|
||||||
|
endif
|
||||||
|
let toReturn = self.pathSegments[-1]
|
||||||
|
if a:dirSlash && self.isDirectory
|
||||||
|
let toReturn = toReturn . '/'
|
||||||
|
endif
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.getSortOrderIndex() {{{3
|
||||||
|
"returns the index of the pattern in g:NERDTreeSortOrder that this path matches
|
||||||
|
function! s:Path.getSortOrderIndex()
|
||||||
|
let i = 0
|
||||||
|
while i < len(g:NERDTreeSortOrder)
|
||||||
|
if self.getLastPathComponent(1) =~# g:NERDTreeSortOrder[i]
|
||||||
|
return i
|
||||||
|
endif
|
||||||
|
let i = i + 1
|
||||||
|
endwhile
|
||||||
|
return s:NERDTreeSortStarIndex
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
"FUNCTION: Path.isUnixHiddenFile() {{{3
|
||||||
|
"check for unix hidden files
|
||||||
|
function! s:Path.isUnixHiddenFile()
|
||||||
|
return self.getLastPathComponent(0) =~# '^\.'
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.ignore() {{{3
|
||||||
|
"returns true if this path should be ignored
|
||||||
|
function! s:Path.ignore()
|
||||||
|
"filter out the user specified paths to ignore
|
||||||
|
if b:NERDTreeIgnoreEnabled
|
||||||
|
for i in g:NERDTreeIgnore
|
||||||
|
if self._ignorePatternMatches(i)
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
|
||||||
|
"dont show hidden files unless instructed to
|
||||||
|
if b:NERDTreeShowHidden ==# 0 && self.isUnixHiddenFile()
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
if b:NERDTreeShowFiles ==# 0 && self.isDirectory ==# 0
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
if exists("*NERDTreeCustomIgnoreFilter") && NERDTreeCustomIgnoreFilter(self)
|
||||||
|
return 1
|
||||||
|
endif
|
||||||
|
|
||||||
|
return 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path._ignorePatternMatches(pattern) {{{3
|
||||||
|
"returns true if this path matches the given ignore pattern
|
||||||
|
function! s:Path._ignorePatternMatches(pattern)
|
||||||
|
let pat = a:pattern
|
||||||
|
if strpart(pat,len(pat)-7) == '[[dir]]'
|
||||||
|
if !self.isDirectory
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
let pat = strpart(pat,0, len(pat)-7)
|
||||||
|
elseif strpart(pat,len(pat)-8) == '[[file]]'
|
||||||
|
if self.isDirectory
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
let pat = strpart(pat,0, len(pat)-8)
|
||||||
|
endif
|
||||||
|
|
||||||
|
return self.getLastPathComponent(0) =~# pat
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.isUnder(path) {{{3
|
||||||
|
"return 1 if this path is somewhere under the given path in the filesystem.
|
||||||
|
"
|
||||||
|
"a:path should be a dir
|
||||||
|
function! s:Path.isUnder(path)
|
||||||
|
if a:path.isDirectory == 0
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
let this = self.str()
|
||||||
|
let that = a:path.str()
|
||||||
|
return stridx(this, that . s:Path.Slash()) == 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.JoinPathStrings(...) {{{3
|
||||||
|
function! s:Path.JoinPathStrings(...)
|
||||||
|
let components = []
|
||||||
|
for i in a:000
|
||||||
|
let components = extend(components, split(i, '/'))
|
||||||
|
endfor
|
||||||
|
return '/' . join(components, '/')
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.equals() {{{3
|
||||||
|
"
|
||||||
|
"Determines whether 2 path objects are "equal".
|
||||||
|
"They are equal if the paths they represent are the same
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"path: the other path obj to compare this with
|
||||||
|
function! s:Path.equals(path)
|
||||||
|
return self.str() ==# a:path.str()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.New() {{{3
|
||||||
|
"The Constructor for the Path object
|
||||||
|
function! s:Path.New(path)
|
||||||
|
let newPath = copy(self)
|
||||||
|
|
||||||
|
call newPath.readInfoFromDisk(s:Path.AbsolutePathFor(a:path))
|
||||||
|
|
||||||
|
let newPath.cachedDisplayString = ""
|
||||||
|
|
||||||
|
return newPath
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.Slash() {{{3
|
||||||
|
"return the slash to use for the current OS
|
||||||
|
function! s:Path.Slash()
|
||||||
|
return nerdtree#runningWindows() ? '\' : '/'
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.Resolve() {{{3
|
||||||
|
"Invoke the vim resolve() function and return the result
|
||||||
|
"This is necessary because in some versions of vim resolve() removes trailing
|
||||||
|
"slashes while in other versions it doesn't. This always removes the trailing
|
||||||
|
"slash
|
||||||
|
function! s:Path.Resolve(path)
|
||||||
|
let tmp = resolve(a:path)
|
||||||
|
return tmp =~# '.\+/$' ? substitute(tmp, '/$', '', '') : tmp
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.readInfoFromDisk(fullpath) {{{3
|
||||||
|
"
|
||||||
|
"
|
||||||
|
"Throws NERDTree.Path.InvalidArguments exception.
|
||||||
|
function! s:Path.readInfoFromDisk(fullpath)
|
||||||
|
call self.extractDriveLetter(a:fullpath)
|
||||||
|
|
||||||
|
let fullpath = s:Path.WinToUnixPath(a:fullpath)
|
||||||
|
|
||||||
|
if getftype(fullpath) ==# "fifo"
|
||||||
|
throw "NERDTree.InvalidFiletypeError: Cant handle FIFO files: " . a:fullpath
|
||||||
|
endif
|
||||||
|
|
||||||
|
let self.pathSegments = split(fullpath, '/')
|
||||||
|
|
||||||
|
let self.isReadOnly = 0
|
||||||
|
if isdirectory(a:fullpath)
|
||||||
|
let self.isDirectory = 1
|
||||||
|
elseif filereadable(a:fullpath)
|
||||||
|
let self.isDirectory = 0
|
||||||
|
let self.isReadOnly = filewritable(a:fullpath) ==# 0
|
||||||
|
else
|
||||||
|
throw "NERDTree.InvalidArgumentsError: Invalid path = " . a:fullpath
|
||||||
|
endif
|
||||||
|
|
||||||
|
let self.isExecutable = 0
|
||||||
|
if !self.isDirectory
|
||||||
|
let self.isExecutable = getfperm(a:fullpath) =~# 'x'
|
||||||
|
endif
|
||||||
|
|
||||||
|
"grab the last part of the path (minus the trailing slash)
|
||||||
|
let lastPathComponent = self.getLastPathComponent(0)
|
||||||
|
|
||||||
|
"get the path to the new node with the parent dir fully resolved
|
||||||
|
let hardPath = s:Path.Resolve(self.strTrunk()) . '/' . lastPathComponent
|
||||||
|
|
||||||
|
"if the last part of the path is a symlink then flag it as such
|
||||||
|
let self.isSymLink = (s:Path.Resolve(hardPath) != hardPath)
|
||||||
|
if self.isSymLink
|
||||||
|
let self.symLinkDest = s:Path.Resolve(fullpath)
|
||||||
|
|
||||||
|
"if the link is a dir then slap a / on the end of its dest
|
||||||
|
if isdirectory(self.symLinkDest)
|
||||||
|
|
||||||
|
"we always wanna treat MS windows shortcuts as files for
|
||||||
|
"simplicity
|
||||||
|
if hardPath !~# '\.lnk$'
|
||||||
|
|
||||||
|
let self.symLinkDest = self.symLinkDest . '/'
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.refresh() {{{3
|
||||||
|
function! s:Path.refresh()
|
||||||
|
call self.readInfoFromDisk(self.str())
|
||||||
|
call self.cacheDisplayString()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.rename() {{{3
|
||||||
|
"
|
||||||
|
"Renames this node on the filesystem
|
||||||
|
function! s:Path.rename(newPath)
|
||||||
|
if a:newPath ==# ''
|
||||||
|
throw "NERDTree.InvalidArgumentsError: Invalid newPath for renaming = ". a:newPath
|
||||||
|
endif
|
||||||
|
|
||||||
|
let success = rename(self.str(), a:newPath)
|
||||||
|
if success != 0
|
||||||
|
throw "NERDTree.PathRenameError: Could not rename: '" . self.str() . "'" . 'to:' . a:newPath
|
||||||
|
endif
|
||||||
|
call self.readInfoFromDisk(a:newPath)
|
||||||
|
|
||||||
|
for i in self.bookmarkNames()
|
||||||
|
let b = g:NERDTreeBookmark.BookmarkFor(i)
|
||||||
|
call b.setPath(copy(self))
|
||||||
|
endfor
|
||||||
|
call g:NERDTreeBookmark.Write()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.str() {{{3
|
||||||
|
"
|
||||||
|
"Returns a string representation of this Path
|
||||||
|
"
|
||||||
|
"Takes an optional dictionary param to specify how the output should be
|
||||||
|
"formatted.
|
||||||
|
"
|
||||||
|
"The dict may have the following keys:
|
||||||
|
" 'format'
|
||||||
|
" 'escape'
|
||||||
|
" 'truncateTo'
|
||||||
|
"
|
||||||
|
"The 'format' key may have a value of:
|
||||||
|
" 'Cd' - a string to be used with the :cd command
|
||||||
|
" 'Edit' - a string to be used with :e :sp :new :tabedit etc
|
||||||
|
" 'UI' - a string used in the NERD tree UI
|
||||||
|
"
|
||||||
|
"The 'escape' key, if specified will cause the output to be escaped with
|
||||||
|
"shellescape()
|
||||||
|
"
|
||||||
|
"The 'truncateTo' key causes the resulting string to be truncated to the value
|
||||||
|
"'truncateTo' maps to. A '<' char will be prepended.
|
||||||
|
function! s:Path.str(...)
|
||||||
|
let options = a:0 ? a:1 : {}
|
||||||
|
let toReturn = ""
|
||||||
|
|
||||||
|
if has_key(options, 'format')
|
||||||
|
let format = options['format']
|
||||||
|
if has_key(self, '_strFor' . format)
|
||||||
|
exec 'let toReturn = self._strFor' . format . '()'
|
||||||
|
else
|
||||||
|
raise 'NERDTree.UnknownFormatError: unknown format "'. format .'"'
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
let toReturn = self._str()
|
||||||
|
endif
|
||||||
|
|
||||||
|
if nerdtree#has_opt(options, 'escape')
|
||||||
|
let toReturn = shellescape(toReturn)
|
||||||
|
endif
|
||||||
|
|
||||||
|
if has_key(options, 'truncateTo')
|
||||||
|
let limit = options['truncateTo']
|
||||||
|
if len(toReturn) > limit
|
||||||
|
let toReturn = "<" . strpart(toReturn, len(toReturn) - limit + 1)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path._strForUI() {{{3
|
||||||
|
function! s:Path._strForUI()
|
||||||
|
let toReturn = '/' . join(self.pathSegments, '/')
|
||||||
|
if self.isDirectory && toReturn != '/'
|
||||||
|
let toReturn = toReturn . '/'
|
||||||
|
endif
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path._strForCd() {{{3
|
||||||
|
"
|
||||||
|
" returns a string that can be used with :cd
|
||||||
|
function! s:Path._strForCd()
|
||||||
|
return escape(self.str(), nerdtree#escChars())
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path._strForEdit() {{{3
|
||||||
|
"
|
||||||
|
"Return: the string for this path that is suitable to be used with the :edit
|
||||||
|
"command
|
||||||
|
function! s:Path._strForEdit()
|
||||||
|
let p = escape(self.str({'format': 'UI'}), nerdtree#escChars())
|
||||||
|
let cwd = getcwd() . s:Path.Slash()
|
||||||
|
|
||||||
|
"return a relative path if we can
|
||||||
|
let isRelative = 0
|
||||||
|
if nerdtree#runningWindows()
|
||||||
|
let isRelative = stridx(tolower(p), tolower(cwd)) == 0
|
||||||
|
else
|
||||||
|
let isRelative = stridx(p, cwd) == 0
|
||||||
|
endif
|
||||||
|
|
||||||
|
if isRelative
|
||||||
|
let p = strpart(p, strlen(cwd))
|
||||||
|
|
||||||
|
"handle the edge case where the file begins with a + (vim interprets
|
||||||
|
"the +foo in `:e +foo` as an option to :edit)
|
||||||
|
if p[0] == "+"
|
||||||
|
let p = '\' . p
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
if p ==# ''
|
||||||
|
let p = '.'
|
||||||
|
endif
|
||||||
|
|
||||||
|
return p
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path._strForGlob() {{{3
|
||||||
|
function! s:Path._strForGlob()
|
||||||
|
let lead = s:Path.Slash()
|
||||||
|
|
||||||
|
"if we are running windows then slap a drive letter on the front
|
||||||
|
if nerdtree#runningWindows()
|
||||||
|
let lead = self.drive . '\'
|
||||||
|
endif
|
||||||
|
|
||||||
|
let toReturn = lead . join(self.pathSegments, s:Path.Slash())
|
||||||
|
|
||||||
|
if !nerdtree#runningWindows()
|
||||||
|
let toReturn = escape(toReturn, nerdtree#escChars())
|
||||||
|
endif
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path._str() {{{3
|
||||||
|
"
|
||||||
|
"Gets the string path for this path object that is appropriate for the OS.
|
||||||
|
"EG, in windows c:\foo\bar
|
||||||
|
" in *nix /foo/bar
|
||||||
|
function! s:Path._str()
|
||||||
|
let lead = s:Path.Slash()
|
||||||
|
|
||||||
|
"if we are running windows then slap a drive letter on the front
|
||||||
|
if nerdtree#runningWindows()
|
||||||
|
let lead = self.drive . '\'
|
||||||
|
endif
|
||||||
|
|
||||||
|
return lead . join(self.pathSegments, s:Path.Slash())
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: Path.strTrunk() {{{3
|
||||||
|
"Gets the path without the last segment on the end.
|
||||||
|
function! s:Path.strTrunk()
|
||||||
|
return self.drive . '/' . join(self.pathSegments[0:-2], '/')
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
" FUNCTION: Path.tabnr() {{{3
|
||||||
|
" return the number of the first tab that is displaying this file
|
||||||
|
"
|
||||||
|
" return 0 if no tab was found
|
||||||
|
function! s:Path.tabnr()
|
||||||
|
let str = self.str()
|
||||||
|
for t in range(tabpagenr('$'))
|
||||||
|
for b in tabpagebuflist(t+1)
|
||||||
|
if str == expand('#' . b . ':p')
|
||||||
|
return t+1
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfor
|
||||||
|
return 0
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: Path.WinToUnixPath(pathstr){{{3
|
||||||
|
"Takes in a windows path and returns the unix equiv
|
||||||
|
"
|
||||||
|
"A class level method
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"pathstr: the windows path to convert
|
||||||
|
function! s:Path.WinToUnixPath(pathstr)
|
||||||
|
if !nerdtree#runningWindows()
|
||||||
|
return a:pathstr
|
||||||
|
endif
|
||||||
|
|
||||||
|
let toReturn = a:pathstr
|
||||||
|
|
||||||
|
"remove the x:\ of the front
|
||||||
|
let toReturn = substitute(toReturn, '^.*:\(\\\|/\)\?', '/', "")
|
||||||
|
|
||||||
|
"remove the \\ network share from the front
|
||||||
|
let toReturn = substitute(toReturn, '^\(\\\\\|\/\/\)[^\\\/]*\(\\\|\/\)[^\\\/]*\(\\\|\/\)\?', '/', "")
|
||||||
|
|
||||||
|
"convert all \ chars to /
|
||||||
|
let toReturn = substitute(toReturn, '\', '/', "g")
|
||||||
|
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
513
plugin/nerdtree/tree_dir_node.vim
Normal file
513
plugin/nerdtree/tree_dir_node.vim
Normal file
@ -0,0 +1,513 @@
|
|||||||
|
"CLASS: TreeDirNode {{{2
|
||||||
|
"This class is a child of the TreeFileNode class and constitutes the
|
||||||
|
"'Composite' part of the composite design pattern between the treenode
|
||||||
|
"classes.
|
||||||
|
"============================================================
|
||||||
|
let s:TreeDirNode = copy(g:NERDTreeFileNode)
|
||||||
|
let g:NERDTreeDirNode = s:TreeDirNode
|
||||||
|
"FUNCTION: TreeDirNode.AbsoluteTreeRoot(){{{3
|
||||||
|
"class method that returns the highest cached ancestor of the current root
|
||||||
|
function! s:TreeDirNode.AbsoluteTreeRoot()
|
||||||
|
let currentNode = b:NERDTreeRoot
|
||||||
|
while currentNode.parent != {}
|
||||||
|
let currentNode = currentNode.parent
|
||||||
|
endwhile
|
||||||
|
return currentNode
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.activate([options]) {{{3
|
||||||
|
unlet s:TreeDirNode.activate
|
||||||
|
function! s:TreeDirNode.activate(...)
|
||||||
|
let opts = a:0 ? a:1 : {}
|
||||||
|
call self.toggleOpen(opts)
|
||||||
|
call nerdtree#renderView()
|
||||||
|
call self.putCursorHere(0, 0)
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.addChild(treenode, inOrder) {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeDirNode.addChild(treenode, inOrder)
|
||||||
|
call add(self.children, a:treenode)
|
||||||
|
let a:treenode.parent = self
|
||||||
|
|
||||||
|
if a:inOrder
|
||||||
|
call self.sortChildren()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.close() {{{3
|
||||||
|
"Closes this directory
|
||||||
|
function! s:TreeDirNode.close()
|
||||||
|
let self.isOpen = 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.closeChildren() {{{3
|
||||||
|
"Closes all the child dir nodes of this node
|
||||||
|
function! s:TreeDirNode.closeChildren()
|
||||||
|
for i in self.children
|
||||||
|
if i.path.isDirectory
|
||||||
|
call i.close()
|
||||||
|
call i.closeChildren()
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.createChild(path, inOrder) {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeDirNode.createChild(path, inOrder)
|
||||||
|
let newTreeNode = g:NERDTreeFileNode.New(a:path)
|
||||||
|
call self.addChild(newTreeNode, a:inOrder)
|
||||||
|
return newTreeNode
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.findNode(path) {{{3
|
||||||
|
"Will find one of the children (recursively) that has the given path
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"path: a path object
|
||||||
|
unlet s:TreeDirNode.findNode
|
||||||
|
function! s:TreeDirNode.findNode(path)
|
||||||
|
if a:path.equals(self.path)
|
||||||
|
return self
|
||||||
|
endif
|
||||||
|
if stridx(a:path.str(), self.path.str(), 0) ==# -1
|
||||||
|
return {}
|
||||||
|
endif
|
||||||
|
|
||||||
|
if self.path.isDirectory
|
||||||
|
for i in self.children
|
||||||
|
let retVal = i.findNode(a:path)
|
||||||
|
if retVal != {}
|
||||||
|
return retVal
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.getChildCount() {{{3
|
||||||
|
"Returns the number of children this node has
|
||||||
|
function! s:TreeDirNode.getChildCount()
|
||||||
|
return len(self.children)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.getChild(path) {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeDirNode.getChild(path)
|
||||||
|
if stridx(a:path.str(), self.path.str(), 0) ==# -1
|
||||||
|
return {}
|
||||||
|
endif
|
||||||
|
|
||||||
|
let index = self.getChildIndex(a:path)
|
||||||
|
if index ==# -1
|
||||||
|
return {}
|
||||||
|
else
|
||||||
|
return self.children[index]
|
||||||
|
endif
|
||||||
|
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.getChildByIndex(indx, visible) {{{3
|
||||||
|
"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.
|
||||||
|
function! s:TreeDirNode.getChildByIndex(indx, visible)
|
||||||
|
let array_to_search = a:visible? self.getVisibleChildren() : self.children
|
||||||
|
if a:indx > len(array_to_search)
|
||||||
|
throw "NERDTree.InvalidArgumentsError: Index is out of bounds."
|
||||||
|
endif
|
||||||
|
return array_to_search[a:indx]
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.getChildIndex(path) {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeDirNode.getChildIndex(path)
|
||||||
|
if stridx(a:path.str(), self.path.str(), 0) ==# -1
|
||||||
|
return -1
|
||||||
|
endif
|
||||||
|
|
||||||
|
"do a binary search for the child
|
||||||
|
let a = 0
|
||||||
|
let z = self.getChildCount()
|
||||||
|
while a < z
|
||||||
|
let mid = (a+z)/2
|
||||||
|
let diff = a:path.compareTo(self.children[mid].path)
|
||||||
|
|
||||||
|
if diff ==# -1
|
||||||
|
let z = mid
|
||||||
|
elseif diff ==# 1
|
||||||
|
let a = mid+1
|
||||||
|
else
|
||||||
|
return mid
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
return -1
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.GetSelected() {{{3
|
||||||
|
"Returns the current node if it is a dir node, or else returns the current
|
||||||
|
"nodes parent
|
||||||
|
unlet s:TreeDirNode.GetSelected
|
||||||
|
function! s:TreeDirNode.GetSelected()
|
||||||
|
let currentDir = g:NERDTreeFileNode.GetSelected()
|
||||||
|
if currentDir != {} && !currentDir.isRoot()
|
||||||
|
if currentDir.path.isDirectory ==# 0
|
||||||
|
let currentDir = currentDir.parent
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
return currentDir
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.getVisibleChildCount() {{{3
|
||||||
|
"Returns the number of visible children this node has
|
||||||
|
function! s:TreeDirNode.getVisibleChildCount()
|
||||||
|
return len(self.getVisibleChildren())
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.getVisibleChildren() {{{3
|
||||||
|
"Returns a list of children to display for this node, in the correct order
|
||||||
|
"
|
||||||
|
"Return:
|
||||||
|
"an array of treenodes
|
||||||
|
function! s:TreeDirNode.getVisibleChildren()
|
||||||
|
let toReturn = []
|
||||||
|
for i in self.children
|
||||||
|
if i.path.ignore() ==# 0
|
||||||
|
call add(toReturn, i)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
return toReturn
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.hasVisibleChildren() {{{3
|
||||||
|
"returns 1 if this node has any childre, 0 otherwise..
|
||||||
|
function! s:TreeDirNode.hasVisibleChildren()
|
||||||
|
return self.getVisibleChildCount() != 0
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode._initChildren() {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeDirNode._initChildren(silent)
|
||||||
|
"remove all the current child nodes
|
||||||
|
let self.children = []
|
||||||
|
|
||||||
|
"get an array of all the files in the nodes dir
|
||||||
|
let dir = self.path
|
||||||
|
let globDir = dir.str({'format': 'Glob'})
|
||||||
|
|
||||||
|
if version >= 703
|
||||||
|
let filesStr = globpath(globDir, '*', 1) . "\n" . globpath(globDir, '.*', 1)
|
||||||
|
else
|
||||||
|
let filesStr = globpath(globDir, '*') . "\n" . globpath(globDir, '.*')
|
||||||
|
endif
|
||||||
|
|
||||||
|
let files = split(filesStr, "\n")
|
||||||
|
|
||||||
|
if !a:silent && len(files) > g:NERDTreeNotificationThreshold
|
||||||
|
call nerdtree#echo("Please wait, caching a large dir ...")
|
||||||
|
endif
|
||||||
|
|
||||||
|
let invalidFilesFound = 0
|
||||||
|
for i in files
|
||||||
|
|
||||||
|
"filter out the .. and . directories
|
||||||
|
"Note: we must match .. AND ../ cos sometimes the globpath returns
|
||||||
|
"../ for path with strange chars (eg $)
|
||||||
|
if i !~# '\/\.\.\/\?$' && i !~# '\/\.\/\?$'
|
||||||
|
|
||||||
|
"put the next file in a new node and attach it
|
||||||
|
try
|
||||||
|
let path = g:NERDTreePath.New(i)
|
||||||
|
call self.createChild(path, 0)
|
||||||
|
catch /^NERDTree.\(InvalidArguments\|InvalidFiletype\)Error/
|
||||||
|
let invalidFilesFound += 1
|
||||||
|
endtry
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
call self.sortChildren()
|
||||||
|
|
||||||
|
if !a:silent && len(files) > g:NERDTreeNotificationThreshold
|
||||||
|
call nerdtree#echo("Please wait, caching a large dir ... DONE (". self.getChildCount() ." nodes cached).")
|
||||||
|
endif
|
||||||
|
|
||||||
|
if invalidFilesFound
|
||||||
|
call nerdtree#echoWarning(invalidFilesFound . " file(s) could not be loaded into the NERD tree")
|
||||||
|
endif
|
||||||
|
return self.getChildCount()
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.New(path) {{{3
|
||||||
|
"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
|
||||||
|
unlet s:TreeDirNode.New
|
||||||
|
function! s:TreeDirNode.New(path)
|
||||||
|
if a:path.isDirectory != 1
|
||||||
|
throw "NERDTree.InvalidArgumentsError: 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
|
||||||
|
"FUNCTION: TreeDirNode.open([opts]) {{{3
|
||||||
|
"Open the dir in the current tree or in a new tree elsewhere.
|
||||||
|
"
|
||||||
|
"If opening in the current tree, return the number of cached nodes.
|
||||||
|
unlet s:TreeDirNode.open
|
||||||
|
function! s:TreeDirNode.open(...)
|
||||||
|
let opts = a:0 ? a:1 : {}
|
||||||
|
|
||||||
|
if has_key(opts, 'where') && !empty(opts['where'])
|
||||||
|
let opener = g:NERDTreeOpener.New(self.path, opts)
|
||||||
|
call opener.open(self)
|
||||||
|
else
|
||||||
|
let self.isOpen = 1
|
||||||
|
if self.children ==# []
|
||||||
|
return self._initChildren(0)
|
||||||
|
else
|
||||||
|
return 0
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.openAlong([opts]) {{{3
|
||||||
|
"recursive open the dir if it has only one directory child.
|
||||||
|
"
|
||||||
|
"return the level of opened directories.
|
||||||
|
function! s:TreeDirNode.openAlong(...)
|
||||||
|
let opts = a:0 ? a:1 : {}
|
||||||
|
let level = 0
|
||||||
|
|
||||||
|
let node = self
|
||||||
|
while node.path.isDirectory
|
||||||
|
call node.open(opts)
|
||||||
|
let level += 1
|
||||||
|
if node.getVisibleChildCount() == 1
|
||||||
|
let node = node.getChildByIndex(0, 1)
|
||||||
|
else
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
endwhile
|
||||||
|
return level
|
||||||
|
endfunction
|
||||||
|
" FUNCTION: TreeDirNode.openExplorer() {{{3
|
||||||
|
" opens an explorer window for this node in the previous window (could be a
|
||||||
|
" nerd tree or a netrw)
|
||||||
|
function! s:TreeDirNode.openExplorer()
|
||||||
|
call self.open({'where': 'p'})
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.openInNewTab(options) {{{3
|
||||||
|
unlet s:TreeDirNode.openInNewTab
|
||||||
|
function! s:TreeDirNode.openInNewTab(options)
|
||||||
|
call nerdtree#deprecated('TreeDirNode.openInNewTab', 'is deprecated, use open() instead')
|
||||||
|
call self.open({'where': 't'})
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode._openInNewTab() {{{3
|
||||||
|
function! s:TreeDirNode._openInNewTab()
|
||||||
|
tabnew
|
||||||
|
call nerdtree#initNerdTree(self.path.str())
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.openRecursively() {{{3
|
||||||
|
"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.
|
||||||
|
function! s:TreeDirNode.openRecursively()
|
||||||
|
call self._openRecursively2(1)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode._openRecursively2() {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeDirNode._openRecursively2(forceOpen)
|
||||||
|
if self.path.ignore() ==# 0 || a:forceOpen
|
||||||
|
let self.isOpen = 1
|
||||||
|
if self.children ==# []
|
||||||
|
call self._initChildren(1)
|
||||||
|
endif
|
||||||
|
|
||||||
|
for i in self.children
|
||||||
|
if i.path.isDirectory ==# 1
|
||||||
|
call i._openRecursively2(0)
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.refresh() {{{3
|
||||||
|
unlet s:TreeDirNode.refresh
|
||||||
|
function! s:TreeDirNode.refresh()
|
||||||
|
call self.path.refresh()
|
||||||
|
|
||||||
|
"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
|
||||||
|
let globDir = dir.str({'format': 'Glob'})
|
||||||
|
let filesStr = globpath(globDir, '*') . "\n" . globpath(globDir, '.*')
|
||||||
|
let files = split(filesStr, "\n")
|
||||||
|
for i in files
|
||||||
|
"filter out the .. and . directories
|
||||||
|
"Note: we must match .. AND ../ cos sometimes the globpath returns
|
||||||
|
"../ for path with strange chars (eg $)
|
||||||
|
if i !~# '\/\.\.\/\?$' && i !~# '\/\.\/\?$'
|
||||||
|
|
||||||
|
try
|
||||||
|
"create a new path and see if it exists in this nodes children
|
||||||
|
let path = g:NERDTreePath.New(i)
|
||||||
|
let newNode = self.getChild(path)
|
||||||
|
if newNode != {}
|
||||||
|
call newNode.refresh()
|
||||||
|
call add(newChildNodes, newNode)
|
||||||
|
|
||||||
|
"the node doesnt exist so create it
|
||||||
|
else
|
||||||
|
let newNode = g:NERDTreeFileNode.New(path)
|
||||||
|
let newNode.parent = self
|
||||||
|
call add(newChildNodes, newNode)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
catch /^NERDTree.InvalidArgumentsError/
|
||||||
|
let invalidFilesFound = 1
|
||||||
|
endtry
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
"swap this nodes children out for the children we just read/refreshed
|
||||||
|
let self.children = newChildNodes
|
||||||
|
call self.sortChildren()
|
||||||
|
|
||||||
|
if invalidFilesFound
|
||||||
|
call nerdtree#echoWarning("some files could not be loaded into the NERD tree")
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.reveal(path) {{{3
|
||||||
|
"reveal the given path, i.e. cache and open all treenodes needed to display it
|
||||||
|
"in the UI
|
||||||
|
function! s:TreeDirNode.reveal(path)
|
||||||
|
if !a:path.isUnder(self.path)
|
||||||
|
throw "NERDTree.InvalidArgumentsError: " . a:path.str() . " should be under " . self.path.str()
|
||||||
|
endif
|
||||||
|
|
||||||
|
call self.open()
|
||||||
|
|
||||||
|
if self.path.equals(a:path.getParent())
|
||||||
|
let n = self.findNode(a:path)
|
||||||
|
call nerdtree#renderView()
|
||||||
|
call n.putCursorHere(1,0)
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
|
||||||
|
let p = a:path
|
||||||
|
while !p.getParent().equals(self.path)
|
||||||
|
let p = p.getParent()
|
||||||
|
endwhile
|
||||||
|
|
||||||
|
let n = self.findNode(p)
|
||||||
|
call n.reveal(a:path)
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.removeChild(treenode) {{{3
|
||||||
|
"
|
||||||
|
"Removes the given treenode from this nodes set of children
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"treenode: the node to remove
|
||||||
|
"
|
||||||
|
"Throws a NERDTree.ChildNotFoundError if the given treenode is not found
|
||||||
|
function! s:TreeDirNode.removeChild(treenode)
|
||||||
|
for i in range(0, self.getChildCount()-1)
|
||||||
|
if self.children[i].equals(a:treenode)
|
||||||
|
call remove(self.children, i)
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
|
||||||
|
throw "NERDTree.ChildNotFoundError: child node was not found"
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.sortChildren() {{{3
|
||||||
|
"
|
||||||
|
"Sorts the children of this node according to alphabetical order and the
|
||||||
|
"directory priority.
|
||||||
|
"
|
||||||
|
function! s:TreeDirNode.sortChildren()
|
||||||
|
let CompareFunc = function("nerdtree#compareNodes")
|
||||||
|
call sort(self.children, CompareFunc)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeDirNode.toggleOpen([options]) {{{3
|
||||||
|
"Opens this directory if it is closed and vice versa
|
||||||
|
function! s:TreeDirNode.toggleOpen(...)
|
||||||
|
let opts = a:0 ? a:1 : {}
|
||||||
|
if self.isOpen ==# 1
|
||||||
|
call self.close()
|
||||||
|
else
|
||||||
|
if g:NERDTreeCasadeOpenSingleChildDir == 0
|
||||||
|
call self.open(opts)
|
||||||
|
else
|
||||||
|
call self.openAlong(opts)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeDirNode.transplantChild(newNode) {{{3
|
||||||
|
"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:
|
||||||
|
"newNode: the node to graft into the tree
|
||||||
|
function! s:TreeDirNode.transplantChild(newNode)
|
||||||
|
for i in range(0, self.getChildCount()-1)
|
||||||
|
if self.children[i].equals(a:newNode)
|
||||||
|
let self.children[i] = a:newNode
|
||||||
|
let a:newNode.parent = self
|
||||||
|
break
|
||||||
|
endif
|
||||||
|
endfor
|
||||||
|
endfunction
|
||||||
|
"============================================================
|
469
plugin/nerdtree/tree_file_node.vim
Normal file
469
plugin/nerdtree/tree_file_node.vim
Normal file
@ -0,0 +1,469 @@
|
|||||||
|
"CLASS: TreeFileNode {{{2
|
||||||
|
"This class is the parent of the TreeDirNode class and constitures the
|
||||||
|
"'Component' part of the composite design pattern between the treenode
|
||||||
|
"classes.
|
||||||
|
"============================================================
|
||||||
|
let s:TreeFileNode = {}
|
||||||
|
let g:NERDTreeFileNode = s:TreeFileNode
|
||||||
|
"FUNCTION: TreeFileNode.activate(...) {{{3
|
||||||
|
function! s:TreeFileNode.activate(...)
|
||||||
|
call self.open(a:0 ? a:1 : {})
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.bookmark(name) {{{3
|
||||||
|
"bookmark this node with a:name
|
||||||
|
function! s:TreeFileNode.bookmark(name)
|
||||||
|
|
||||||
|
"if a bookmark exists with the same name and the node is cached then save
|
||||||
|
"it so we can update its display string
|
||||||
|
let oldMarkedNode = {}
|
||||||
|
try
|
||||||
|
let oldMarkedNode = g:NERDTreeBookmark.GetNodeForName(a:name, 1)
|
||||||
|
catch /^NERDTree.BookmarkNotFoundError/
|
||||||
|
catch /^NERDTree.BookmarkedNodeNotFoundError/
|
||||||
|
endtry
|
||||||
|
|
||||||
|
call g:NERDTreeBookmark.AddBookmark(a:name, self.path)
|
||||||
|
call self.path.cacheDisplayString()
|
||||||
|
call g:NERDTreeBookmark.Write()
|
||||||
|
|
||||||
|
if !empty(oldMarkedNode)
|
||||||
|
call oldMarkedNode.path.cacheDisplayString()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.cacheParent() {{{3
|
||||||
|
"initializes self.parent if it isnt already
|
||||||
|
function! s:TreeFileNode.cacheParent()
|
||||||
|
if empty(self.parent)
|
||||||
|
let parentPath = self.path.getParent()
|
||||||
|
if parentPath.equals(self.path)
|
||||||
|
throw "NERDTree.CannotCacheParentError: already at root"
|
||||||
|
endif
|
||||||
|
let self.parent = s:TreeFileNode.New(parentPath)
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.clearBookmarks() {{{3
|
||||||
|
function! s:TreeFileNode.clearBookmarks()
|
||||||
|
for i in g:NERDTreeBookmark.Bookmarks()
|
||||||
|
if i.path.equals(self.path)
|
||||||
|
call i.delete()
|
||||||
|
end
|
||||||
|
endfor
|
||||||
|
call self.path.cacheDisplayString()
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.copy(dest) {{{3
|
||||||
|
function! s:TreeFileNode.copy(dest)
|
||||||
|
call self.path.copy(a:dest)
|
||||||
|
let newPath = s:NERDTreePath.New(a:dest)
|
||||||
|
let parent = b:NERDTreeRoot.findNode(newPath.getParent())
|
||||||
|
if !empty(parent)
|
||||||
|
call parent.refresh()
|
||||||
|
return parent.findNode(newPath)
|
||||||
|
else
|
||||||
|
return {}
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.delete {{{3
|
||||||
|
"Removes this node from the tree and calls the Delete method for its path obj
|
||||||
|
function! s:TreeFileNode.delete()
|
||||||
|
call self.path.delete()
|
||||||
|
call self.parent.removeChild(self)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.displayString() {{{3
|
||||||
|
"
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode.displayString()
|
||||||
|
return self.path.displayString()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.equals(treenode) {{{3
|
||||||
|
"
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode.equals(treenode)
|
||||||
|
return self.path.str() ==# a:treenode.path.str()
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.findNode(path) {{{3
|
||||||
|
"Returns self if this node.path.Equals the given path.
|
||||||
|
"Returns {} if not equal.
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"path: the path object to compare against
|
||||||
|
function! s:TreeFileNode.findNode(path)
|
||||||
|
if a:path.equals(self.path)
|
||||||
|
return self
|
||||||
|
endif
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.findOpenDirSiblingWithVisibleChildren(direction) {{{3
|
||||||
|
"
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode.findOpenDirSiblingWithVisibleChildren(direction)
|
||||||
|
"if we have no parent then we can have no siblings
|
||||||
|
if self.parent != {}
|
||||||
|
let nextSibling = self.findSibling(a:direction)
|
||||||
|
|
||||||
|
while nextSibling != {}
|
||||||
|
if nextSibling.path.isDirectory && nextSibling.hasVisibleChildren() && nextSibling.isOpen
|
||||||
|
return nextSibling
|
||||||
|
endif
|
||||||
|
let nextSibling = nextSibling.findSibling(a:direction)
|
||||||
|
endwhile
|
||||||
|
endif
|
||||||
|
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.findSibling(direction) {{{3
|
||||||
|
"
|
||||||
|
"Finds the next sibling for this node in the indicated direction
|
||||||
|
"
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode.findSibling(direction)
|
||||||
|
"if we have no parent then we can have no siblings
|
||||||
|
if self.parent != {}
|
||||||
|
|
||||||
|
"get the index of this node in its parents children
|
||||||
|
let siblingIndx = self.parent.getChildIndex(self.path)
|
||||||
|
|
||||||
|
if siblingIndx != -1
|
||||||
|
"move a long to the next potential sibling node
|
||||||
|
let siblingIndx = a:direction ==# 1 ? siblingIndx+1 : siblingIndx-1
|
||||||
|
|
||||||
|
"keep moving along to the next sibling till we find one that is valid
|
||||||
|
let numSiblings = self.parent.getChildCount()
|
||||||
|
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
|
||||||
|
if self.parent.children[siblingIndx].path.ignore() ==# 0
|
||||||
|
return self.parent.children[siblingIndx]
|
||||||
|
endif
|
||||||
|
|
||||||
|
"go to next node
|
||||||
|
let siblingIndx = a:direction ==# 1 ? siblingIndx+1 : siblingIndx-1
|
||||||
|
endwhile
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.getLineNum(){{{3
|
||||||
|
"returns the line number this node is rendered on, or -1 if it isnt rendered
|
||||||
|
function! s:TreeFileNode.getLineNum()
|
||||||
|
"if the node is the root then return the root line no.
|
||||||
|
if self.isRoot()
|
||||||
|
return s:TreeFileNode.GetRootLineNum()
|
||||||
|
endif
|
||||||
|
|
||||||
|
let totalLines = line("$")
|
||||||
|
|
||||||
|
"the path components we have matched so far
|
||||||
|
let pathcomponents = [substitute(b:NERDTreeRoot.path.str({'format': 'UI'}), '/ *$', '', '')]
|
||||||
|
"the index of the component we are searching for
|
||||||
|
let curPathComponent = 1
|
||||||
|
|
||||||
|
let fullpath = self.path.str({'format': 'UI'})
|
||||||
|
|
||||||
|
|
||||||
|
let lnum = s:TreeFileNode.GetRootLineNum()
|
||||||
|
while lnum > 0
|
||||||
|
let lnum = lnum + 1
|
||||||
|
"have we reached the bottom of the tree?
|
||||||
|
if lnum ==# totalLines+1
|
||||||
|
return -1
|
||||||
|
endif
|
||||||
|
|
||||||
|
let curLine = getline(lnum)
|
||||||
|
|
||||||
|
let indent = nerdtree#indentLevelFor(curLine)
|
||||||
|
if indent ==# curPathComponent
|
||||||
|
let curLine = nerdtree#stripMarkupFromLine(curLine, 1)
|
||||||
|
|
||||||
|
let curPath = join(pathcomponents, '/') . '/' . curLine
|
||||||
|
if stridx(fullpath, curPath, 0) ==# 0
|
||||||
|
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
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.GetRootForTab(){{{3
|
||||||
|
"get the root node for this tab
|
||||||
|
function! s:TreeFileNode.GetRootForTab()
|
||||||
|
if nerdtree#treeExistsForTab()
|
||||||
|
return getbufvar(t:NERDTreeBufName, 'NERDTreeRoot')
|
||||||
|
end
|
||||||
|
return {}
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.GetRootLineNum(){{{3
|
||||||
|
"gets the line number of the root node
|
||||||
|
function! s:TreeFileNode.GetRootLineNum()
|
||||||
|
let rootLine = 1
|
||||||
|
while getline(rootLine) !~# '^\(/\|<\)'
|
||||||
|
let rootLine = rootLine + 1
|
||||||
|
endwhile
|
||||||
|
return rootLine
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.GetSelected() {{{3
|
||||||
|
"gets the treenode that the cursor is currently over
|
||||||
|
function! s:TreeFileNode.GetSelected()
|
||||||
|
try
|
||||||
|
let path = nerdtree#getPath(line("."))
|
||||||
|
if path ==# {}
|
||||||
|
return {}
|
||||||
|
endif
|
||||||
|
return b:NERDTreeRoot.findNode(path)
|
||||||
|
catch /^NERDTree/
|
||||||
|
return {}
|
||||||
|
endtry
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.isVisible() {{{3
|
||||||
|
"returns 1 if this node should be visible according to the tree filters and
|
||||||
|
"hidden file filters (and their on/off status)
|
||||||
|
function! s:TreeFileNode.isVisible()
|
||||||
|
return !self.path.ignore()
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.isRoot() {{{3
|
||||||
|
"returns 1 if this node is b:NERDTreeRoot
|
||||||
|
function! s:TreeFileNode.isRoot()
|
||||||
|
if !nerdtree#treeExistsForBuf()
|
||||||
|
throw "NERDTree.NoTreeError: No tree exists for the current buffer"
|
||||||
|
endif
|
||||||
|
|
||||||
|
return self.equals(b:NERDTreeRoot)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.makeRoot() {{{3
|
||||||
|
"Make this node the root of the tree
|
||||||
|
function! s:TreeFileNode.makeRoot()
|
||||||
|
if self.path.isDirectory
|
||||||
|
let b:NERDTreeRoot = self
|
||||||
|
else
|
||||||
|
call self.cacheParent()
|
||||||
|
let b:NERDTreeRoot = self.parent
|
||||||
|
endif
|
||||||
|
|
||||||
|
call b:NERDTreeRoot.open()
|
||||||
|
|
||||||
|
"change dir to the dir of the new root if instructed to
|
||||||
|
if g:NERDTreeChDirMode ==# 2
|
||||||
|
exec "cd " . b:NERDTreeRoot.path.str({'format': 'Edit'})
|
||||||
|
endif
|
||||||
|
|
||||||
|
silent doautocmd User NERDTreeNewRoot
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.New(path) {{{3
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode.New(path)
|
||||||
|
if a:path.isDirectory
|
||||||
|
return g:NERDTreeDirNode.New(a:path)
|
||||||
|
else
|
||||||
|
let newTreeNode = copy(self)
|
||||||
|
let newTreeNode.path = a:path
|
||||||
|
let newTreeNode.parent = {}
|
||||||
|
return newTreeNode
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.open() {{{3
|
||||||
|
function! s:TreeFileNode.open(...)
|
||||||
|
let opts = a:0 ? a:1 : {}
|
||||||
|
let opener = g:NERDTreeOpener.New(self.path, opts)
|
||||||
|
call opener.open(self)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.openSplit() {{{3
|
||||||
|
"Open this node in a new window
|
||||||
|
function! s:TreeFileNode.openSplit()
|
||||||
|
call nerdtree#deprecated('TreeFileNode.openSplit', 'is deprecated, use .open() instead.')
|
||||||
|
call self.open({'where': 'h'})
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.openVSplit() {{{3
|
||||||
|
"Open this node in a new vertical window
|
||||||
|
function! s:TreeFileNode.openVSplit()
|
||||||
|
call nerdtree#deprecated('TreeFileNode.openVSplit', 'is deprecated, use .open() instead.')
|
||||||
|
call self.open({'where': 'v'})
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.openInNewTab(options) {{{3
|
||||||
|
function! s:TreeFileNode.openInNewTab(options)
|
||||||
|
echomsg 'TreeFileNode.openInNewTab is deprecated'
|
||||||
|
call self.open(extend({'where': 't'}, a:options))
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.putCursorHere(isJump, recurseUpward){{{3
|
||||||
|
"Places the cursor on the line number this node is rendered on
|
||||||
|
"
|
||||||
|
"Args:
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode.putCursorHere(isJump, recurseUpward)
|
||||||
|
let ln = self.getLineNum()
|
||||||
|
if ln != -1
|
||||||
|
if a:isJump
|
||||||
|
mark '
|
||||||
|
endif
|
||||||
|
call cursor(ln, col("."))
|
||||||
|
else
|
||||||
|
if a:recurseUpward
|
||||||
|
let node = self
|
||||||
|
while node != {} && node.getLineNum() ==# -1
|
||||||
|
let node = node.parent
|
||||||
|
call node.open()
|
||||||
|
endwhile
|
||||||
|
call nerdtree#renderView()
|
||||||
|
call node.putCursorHere(a:isJump, 0)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
"FUNCTION: TreeFileNode.refresh() {{{3
|
||||||
|
function! s:TreeFileNode.refresh()
|
||||||
|
call self.path.refresh()
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.rename() {{{3
|
||||||
|
"Calls the rename method for this nodes path obj
|
||||||
|
function! s:TreeFileNode.rename(newName)
|
||||||
|
let newName = substitute(a:newName, '\(\\\|\/\)$', '', '')
|
||||||
|
call self.path.rename(newName)
|
||||||
|
call self.parent.removeChild(self)
|
||||||
|
|
||||||
|
let parentPath = self.path.getParent()
|
||||||
|
let newParent = b:NERDTreeRoot.findNode(parentPath)
|
||||||
|
|
||||||
|
if newParent != {}
|
||||||
|
call newParent.createChild(self.path, 1)
|
||||||
|
call newParent.refresh()
|
||||||
|
endif
|
||||||
|
endfunction
|
||||||
|
"FUNCTION: TreeFileNode.renderToString {{{3
|
||||||
|
"returns a string representation for this tree to be rendered in the view
|
||||||
|
function! s:TreeFileNode.renderToString()
|
||||||
|
return self._renderToString(0, 0, [], self.getChildCount() ==# 1)
|
||||||
|
endfunction
|
||||||
|
|
||||||
|
|
||||||
|
"Args:
|
||||||
|
"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
|
||||||
|
function! s:TreeFileNode._renderToString(depth, drawText, vertMap, isLastChild)
|
||||||
|
let output = ""
|
||||||
|
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 g:NERDTreeDirArrows
|
||||||
|
let treeParts = treeParts . ' '
|
||||||
|
else
|
||||||
|
if j ==# 1
|
||||||
|
let treeParts = treeParts . '| '
|
||||||
|
else
|
||||||
|
let treeParts = treeParts . ' '
|
||||||
|
endif
|
||||||
|
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 !g:NERDTreeDirArrows
|
||||||
|
if a:isLastChild
|
||||||
|
let treeParts = treeParts . '`'
|
||||||
|
else
|
||||||
|
let treeParts = treeParts . '|'
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
"smack the appropriate dir/file symbol on the line before the file/dir
|
||||||
|
"name itself
|
||||||
|
if self.path.isDirectory
|
||||||
|
if self.isOpen
|
||||||
|
if g:NERDTreeDirArrows
|
||||||
|
let treeParts = treeParts . '▾ '
|
||||||
|
else
|
||||||
|
let treeParts = treeParts . '~'
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
if g:NERDTreeDirArrows
|
||||||
|
let treeParts = treeParts . '▸ '
|
||||||
|
else
|
||||||
|
let treeParts = treeParts . '+'
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
else
|
||||||
|
if g:NERDTreeDirArrows
|
||||||
|
let treeParts = treeParts . ' '
|
||||||
|
else
|
||||||
|
let treeParts = treeParts . '-'
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
let line = treeParts . self.displayString()
|
||||||
|
|
||||||
|
let output = output . line . "\n"
|
||||||
|
endif
|
||||||
|
|
||||||
|
"if the node is an open dir, draw its children
|
||||||
|
if self.path.isDirectory ==# 1 && self.isOpen ==# 1
|
||||||
|
|
||||||
|
let childNodesToDraw = self.getVisibleChildren()
|
||||||
|
if len(childNodesToDraw) > 0
|
||||||
|
|
||||||
|
"draw all the nodes children except the last
|
||||||
|
let lastIndx = len(childNodesToDraw)-1
|
||||||
|
if lastIndx > 0
|
||||||
|
for i in childNodesToDraw[0:lastIndx-1]
|
||||||
|
let output = output . i._renderToString(a:depth + 1, 1, add(copy(a:vertMap), 1), 0)
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
|
||||||
|
"draw the last child, indicating that it IS the last
|
||||||
|
let output = output . childNodesToDraw[lastIndx]._renderToString(a:depth + 1, 1, add(copy(a:vertMap), 0), 1)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
return output
|
||||||
|
endfunction
|
Loading…
Reference in New Issue
Block a user