rename 'preview' to 'stay' and standardize the 'keepopen' name

This commit is contained in:
Martin Grenfell
2012-01-06 14:54:19 +00:00
parent 92248f92ca
commit af13711fac

View File

@@ -1222,7 +1222,7 @@ endfunction
" new tab) " new tab)
" 'reuse': if a window is displaying the file then jump the cursor there " 'reuse': if a window is displaying the file then jump the cursor there
" 'keepopen': dont close the tree window " 'keepopen': dont close the tree window
" 'preview': open the file, but keep the cursor in the tree win " 'stay': open the file, but keep the cursor in the tree win
" "
function! s:TreeFileNode.open(...) function! s:TreeFileNode.open(...)
let opts = a:0 ? a:1 : {} let opts = a:0 ? a:1 : {}
@@ -1246,11 +1246,11 @@ function! s:TreeFileNode.open(...)
call self._open() call self._open()
endif endif
if !s:has_opt(opts, 'forceKeepWinOpen') if !s:has_opt(opts, 'keepopen')
call s:closeTreeIfQuitOnOpen() call s:closeTreeIfQuitOnOpen()
endif endif
if s:has_opt(opts, 'preview') if s:has_opt(opts, 'stay')
call s:exec('normal ' . currentTab . 'gt') call s:exec('normal ' . currentTab . 'gt')
call s:exec(bufwinnr(currentBuf) . 'wincmd w') call s:exec(bufwinnr(currentBuf) . 'wincmd w')
endif endif
@@ -1847,7 +1847,7 @@ endfunction
"A dictionary containing the following keys (all optional): "A dictionary containing the following keys (all optional):
" 'split': 't' if the tree should be opened in a new tab " 'split': 't' if the tree should be opened in a new tab
" 'keepopen': dont close the tree window " 'keepopen': dont close the tree window
" 'preview': open the file, but keep the cursor in the tree win " 'stay': open the file, but keep the cursor in the tree win
" "
unlet s:TreeDirNode.open unlet s:TreeDirNode.open
function! s:TreeDirNode.open(...) function! s:TreeDirNode.open(...)
@@ -1859,12 +1859,12 @@ function! s:TreeDirNode.open(...)
call self._openInNewTab() call self._openInNewTab()
if s:has_opt(opts, 'preview') if s:has_opt(opts, 'stay')
call s:exec('normal ' . currentTab . 'gt') call s:exec('normal ' . currentTab . 'gt')
call s:exec(bufwinnr(currentBuf) . 'wincmd w') call s:exec(bufwinnr(currentBuf) . 'wincmd w')
endif endif
if !s:has_opt(opts, 'keepTreeOpen') if !s:has_opt(opts, 'keepopen')
call s:closeTreeIfQuitOnOpen() call s:closeTreeIfQuitOnOpen()
endif endif
@@ -4135,17 +4135,17 @@ endfunction
"FUNCTION: s:previewNodeCurrent(node) {{{2 "FUNCTION: s:previewNodeCurrent(node) {{{2
function! s:previewNodeCurrent(node) function! s:previewNodeCurrent(node)
call a:node.open({'preview': 1}) call a:node.open({'stay': 1})
endfunction endfunction
"FUNCTION: s:previewNodeHSplit(node) {{{2 "FUNCTION: s:previewNodeHSplit(node) {{{2
function! s:previewNodeHSplit(node) function! s:previewNodeHSplit(node)
call a:node.open({'preview': 1, 'split': 'h'}) call a:node.open({'stay': 1, 'split': 'h'})
endfunction endfunction
"FUNCTION: s:previewNodeVSplit(node) {{{2 "FUNCTION: s:previewNodeVSplit(node) {{{2
function! s:previewNodeVSplit(node) function! s:previewNodeVSplit(node)
call a:node.open({'preview': 1, 'split': 'v'}) call a:node.open({'stay': 1, 'split': 'v'})
endfunction endfunction