diff --git a/autoload/vebugger/jdb.vim b/autoload/vebugger/jdb.vim index bd4adc7..319fe3a 100644 --- a/autoload/vebugger/jdb.vim +++ b/autoload/vebugger/jdb.vim @@ -87,8 +87,7 @@ function! s:findFolderFromStackTrace(src,nameFromStackTrace,frameNumber) endif " If no such tag was found, try to find it using the src path. - for l:one_path in vebugger#util#listify(a:src) - let l:path=l:one_path + for l:path in vebugger#util#listify(a:src) for l:dirname in split(a:nameFromStackTrace,'\.') let l:nextPath=l:path.'/'.fnameescape(l:dirname) if empty(glob(l:nextPath))