Lines Matching +refs:current +refs:line
100 (tid, fname, line, col) = loc
105 if buf != vim.current.buffer:
108 … elif is_selected and vim.current.buffer.name not in fname and os.path.exists(fname) and goto_file:
112 buf = vim.current.buffer
119 self.pcSigns.append(PCSign(buf, line, is_selected))
123 curname = vim.current.buffer.name
125 move_cursor(line, 0)
127 … print "FIXME: not sure where to move cursor because %s != %s " % (vim.current.buffer.name, fname)
161 for (is_resolved, file, line) in GetBreakpointLocations(bp):
164 needed_bps[(buf, line, is_resolved)] = bp
204 def haveBreakpoint(self, file, line): argument
206 return (file, line) in self.markedBreakpoints
208 def getBreakpoints(self, fname, line): argument
210 if self.haveBreakpoint(fname, line):
211 return self.markedBreakpoints[(fname, line)]
215 def deleteBreakpoints(self, name, line): argument
216 del self.markedBreakpoints[(name, line)]