Home | History | Annotate | Download | only in idlelib

Lines Matching refs:cursel

116         cursel = int(self.listbox.curselection()[0])
118 self.listbox.see(cursel)
121 selstart = self.completions[cursel]
122 if self._binary_search(lts) == cursel:
132 if self.completions[cursel][:len(self.start)] == self.start:
247 cursel = int(self.listbox.curselection()[0])
248 self._change_start(self.completions[cursel])
252 cursel = int(self.listbox.curselection()[0])
253 self._change_start(self.completions[cursel])
304 cursel = int(self.listbox.curselection()[0])
305 if self.completions[cursel][:len(self.start)] == self.start \
307 self._change_start(self.completions[cursel])
315 cursel = int(self.listbox.curselection()[0])
324 newsel = max(0, cursel-jump)
327 newsel = min(len(self.completions)-1, cursel+jump)
329 newsel = max(0, cursel-1)
332 newsel = min(len(self.completions)-1, cursel+1)
333 self.listbox.select_clear(cursel)
342 cursel = int(self.listbox.curselection()[0])
343 self._change_start(self.completions[cursel])