Lines Matching refs:nr
1203 let nr = printf('%d.%d', a:id, a:subid)
1204 if index(s:BreakpointSigns, nr) == -1
1205 call add(s:BreakpointSigns, nr)
1206 …exe "sign define debugBreakpoint" . nr . " text=" . substitute(nr, '\..*', '', '') . " texthl=debu…
1226 let nr = substitute(msg, '.*number="\([0-9.]*\)\".*', '\1', '')
1227 if empty(nr)
1231 " If "nr" is 123 it becomes "123.0" and subid is "0".
1232 " If "nr" is 123.4 it becomes "123.4.0" and subid is "4"; "0" is discarded.
1233 let [id, subid; _] = map(split(nr . '.0', '\.'), 'v:val + 0')
1266 let nr = printf('%d.%d', a:id, a:subid)
1267 …er(a:id, a:subid) . ' line=' . a:entry['lnum'] . ' name=debugBreakpoint' . nr . ' priority=110 fil…
1292 let nr = substitute(a:msg, '.*pid="\([0-9]*\)\".*', '\1', '') + 0
1293 if nr == 0
1296 let s:pid = nr