Fix the use of s:numfiles

This commit is contained in:
Marco Hinz 2013-08-05 14:40:45 +02:00
parent e10b807ba9
commit cede7aec39

View file

@ -181,6 +181,7 @@ endfunction
" Function: s:show_dir {{{1
function! s:show_dir(cnt) abort
let cnt = a:cnt
let num = s:numfiles
let files = []
for fname in split(glob('.\=*'))
@ -205,8 +206,9 @@ function! s:show_dir(cnt) abort
execute 'nnoremap <buffer>' index ':edit' fnameescape(fname) '<cr>'
let cnt += 1
let num -= 1
if (cnt == s:numfiles)
if !num
break
endif
endfor