forked from aniani/vim
runtime(termdebug): using wrong type for PlaceSign()
Make sure to convert them to numbers. fixes: #14994 closes: #15015 Signed-off-by: shane.xb.qian <shane.qian@foxmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
0d4d23dac0
commit
f127dce188
@@ -1949,7 +1949,7 @@ def BufRead()
|
||||
for [id, entries] in items(breakpoints)
|
||||
for [subid, entry] in items(entries)
|
||||
if entry['fname'] == fname
|
||||
PlaceSign(id, subid, entry)
|
||||
PlaceSign(str2nr(id), str2nr(subid), entry)
|
||||
endif
|
||||
endfor
|
||||
endfor
|
||||
|
Reference in New Issue
Block a user