Merge pull request #31 from IngoHeimbach/patch-pdb

Bugfix: The PDB where function is not aware of step outs
This commit is contained in:
Idan Arye 2016-11-05 14:47:09 +02:00 committed by GitHub
commit 3432d08467

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]