Edit the commentary in "opener.vim"

This commit doesn't change the content of any comments. It just
changes their appearance (leading quotes are now followed by
a space).
This commit is contained in:
Jason Franklin 2017-07-29 08:37:25 -04:00
parent eae5d02fa9
commit 719d6785d4

View File

@ -1,5 +1,10 @@
" ============================================================================
" CLASS: Opener
"============================================================
"
" The Opener class defines an API for "opening" operations.
" ============================================================================
let s:Opener = {}
let g:NERDTreeOpener = s:Opener
@ -26,6 +31,7 @@ function! s:Opener._bufInWindows(bnum)
return cnt
endfunction
" FUNCTION: Opener._checkToCloseTree(newtab) {{{1
" Check the class options and global options (i.e. NERDTreeQuitOnOpen) to see
" if the tree should be closed now.
@ -44,7 +50,6 @@ function! s:Opener._checkToCloseTree(newtab)
endif
endfunction
" FUNCTION: s:Opener._firstUsableWindow() {{{1
" find the window number of the first normal window
function! s:Opener._firstUsableWindow()