Bugfix: The PDB where function is not aware of step outs

This commit is contained in:
Ingo Heimbach 2016-11-04 17:42:15 +01:00 committed by Ingo Heimbach
parent 78893b6e5f
commit c1913b3994

View File

@ -56,7 +56,7 @@ endfunction
function! vebugger#pdb#_readWhere(pipeName,line,readResult,debugger)
if 'out'==a:pipeName
let l:matches=matchlist(a:line,'\v^\> (.+)\((\d+)\).*\(\)$')
let l:matches=matchlist(a:line,'\v^\> (.+)\((\d+)\).*\(\)%(-\>.*)?$')
if 2<len(l:matches)
let l:file=l:matches[1]