Don't decrement s:numfiles
This worked for the startup, but messed up calling :Startify, because s:numfiles was down to 0.
This commit is contained in:
parent
e7ce96c243
commit
6f3cb22c10
|
@ -228,6 +228,7 @@ endfunction
|
|||
" Function: s:show_files {{{1
|
||||
function! s:show_files(cnt) abort
|
||||
let cnt = a:cnt
|
||||
let num = s:numfiles
|
||||
let entries = {}
|
||||
if s:show_special || s:show_dir
|
||||
call append('$', '')
|
||||
|
@ -246,8 +247,8 @@ function! s:show_files(cnt) abort
|
|||
call append('$', ' ['. index .']'. repeat(' ', (3 - strlen(index))) . fname)
|
||||
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) s:cmd
|
||||
let cnt += 1
|
||||
let s:numfiles -= 1
|
||||
if !s:numfiles
|
||||
let num -= 1
|
||||
if !num
|
||||
break
|
||||
endif
|
||||
endfor
|
||||
|
|
Loading…
Reference in a new issue