[Windows] Fix regression

Close #116
This commit is contained in:
Junegunn Choi 2016-04-12 01:33:18 +09:00
parent 7cfff6b16f
commit 8efc2d29ab

View file

@ -759,7 +759,7 @@ function! s:format_win(tab, win, buf)
endfunction
function! s:windows_sink(line)
let list = matchlist(a:line, '\([ 0-9]*\):\([ 0-9]*\)')
let list = matchlist(a:line, '^ *\([0-9]\+\) *\([0-9]\+\)')
call s:jump(list[1], list[2])
endfunction