commit 38442b06d47eb70d19f81cf7bd0739305bc7bb68
parent ae0d744357ab46a0292ccf258535bf0136c29256
Author: Martin Grenfell <martin_grenfell@msn.com>
Date: Sun, 19 Oct 2008 23:06:09 +1300
refactor code to find tree indent level
Diffstat:
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -133,7 +133,6 @@ let s:NERDTreeWinName = '_NERD_tree_'
let s:tree_wid = 2
let s:tree_markup_reg = '[ \-+~`|]'
-let s:tree_markup_reg_neg = '[^ \-+~`|]'
let s:tree_up_dir_line = '.. (up a dir)'
let s:os_slash = '/'
@@ -2063,7 +2062,7 @@ function! s:findNodeLineNumber(treenode)
let curLine = getline(lnum)
- let indent = match(curLine,s:tree_markup_reg_neg) / s:tree_wid
+ let indent = s:indentLevelFor(curLine)
if indent == curPathComponent
let curLine = s:stripMarkupFromLine(curLine, 1)
@@ -2121,9 +2120,7 @@ function! s:getPath(ln)
return t:NERDTreeRoot.path.getParent()
endif
- "get the indent level for the file (i.e. how deep in the tree it is)
- let indent = match(line, s:tree_markup_reg_neg) / s:tree_wid
-
+ let indent = s:indentLevelFor(line)
"remove the tree parts and the leading space
let curFile = s:stripMarkupFromLine(line, 0)
@@ -2148,7 +2145,7 @@ function! s:getPath(ln)
break
endif
if curLineStripped =~ '/$'
- let lpindent = match(curLine,s:tree_markup_reg_neg) / s:tree_wid
+ let lpindent = s:indentLevelFor(curLine)
if lpindent < indent
let indent = indent - 1
@@ -2211,12 +2208,14 @@ function! s:getTreeWinNum()
return -1
endif
endfunction
-
+"FUNCTION: s:indentLevelFor(line) {{{2
+function! s:indentLevelFor(line)
+ return match(a:line, '[^ \-+~`|]') / s:tree_wid
+endfunction
"FUNCTION: s:isTreeOpen() {{{2
function! s:isTreeOpen()
return s:getTreeWinNum() != -1
endfunction
-
" FUNCTION: s:jumpToChild(direction) {{{2
" Args:
" direction: 0 if going to first child, 1 if going to last