Home | History | Annotate | Download | only in idlelib

Lines Matching refs:undo

10 #$ event <<undo>>
14 #$ event <<dump-undo-state>>
29 self.unbind("<<undo>>")
31 self.unbind("<<dump-undo-state>>")
34 self.bind("<<undo>>", self.undo_event)
36 self.bind("<<dump-undo-state>>", self.dump_event)
88 # undo & redo. Nested matching calls are OK, and the inner calls
92 # directly into the undo list, as if undo_block_xxx hadn't been
129 ##print "truncating undo list"
142 cmd.undo(self.delegate)
188 def undo(self, text):
231 def undo(self, text):
236 ##sys.__stderr__.write("undo: %s\n" % self)
293 def undo(self, text):
298 ##sys.__stderr__.write("undo: %s\n" % self)
329 def undo(self, text):
333 cmd.undo(text)
354 undo = Button(root, text="Undo", command=lambda:d.undo_event(None))
355 undo.pack(side='left')