Lines Matching refs:bind
155 self.top.bind("<<close-window>>", self.close_event)
158 text.bind('<<close-window>>', self.close_event)
162 text.bind("<Control-Button-1>",self.right_menu_event)
163 text.bind("<2>", self.right_menu_event)
166 text.bind("<3>",self.right_menu_event)
168 text.bind('<MouseWheel>', wheel_event)
169 text.bind('<Button-4>', wheel_event)
170 text.bind('<Button-5>', wheel_event)
171 text.bind('<Configure>', self.handle_winconfig)
172 text.bind("<<cut>>", self.cut)
173 text.bind("<<copy>>", self.copy)
174 text.bind("<<paste>>", self.paste)
175 text.bind("<<center-insert>>", self.center_insert_event)
176 text.bind("<<help>>", self.help_dialog)
177 text.bind("<<python-docs>>", self.python_docs)
178 text.bind("<<about-idle>>", self.about_dialog)
179 text.bind("<<open-config-dialog>>", self.config_dialog)
180 text.bind("<<open-module>>", self.open_module_event)
181 text.bind("<<do-nothing>>", lambda event: "break")
182 text.bind("<<select-all>>", self.select_all)
183 text.bind("<<remove-selection>>", self.remove_selection)
184 text.bind("<<find>>", self.find_event)
185 text.bind("<<find-again>>", self.find_again_event)
186 text.bind("<<find-in-files>>", self.find_in_files_event)
187 text.bind("<<find-selection>>", self.find_selection_event)
188 text.bind("<<replace>>", self.replace_event)
189 text.bind("<<goto-line>>", self.goto_line_event)
190 text.bind("<<smart-backspace>>",self.smart_backspace_event)
191 text.bind("<<newline-and-indent>>",self.newline_and_indent_event)
192 text.bind("<<smart-indent>>",self.smart_indent_event)
195 text.bind("<<indent-region>>", fregion.indent_region_event)
196 text.bind("<<dedent-region>>", fregion.dedent_region_event)
197 text.bind("<<comment-region>>", fregion.comment_region_event)
198 text.bind("<<uncomment-region>>", fregion.uncomment_region_event)
199 text.bind("<<tabify-region>>", fregion.tabify_region_event)
200 text.bind("<<untabify-region>>", fregion.untabify_region_event)
202 text.bind("<<toggle-tabs>>", indents.toggle_tabs_event)
203 text.bind("<<change-indentwidth>>", indents.change_indentwidth_event)
204 text.bind("<Left>", self.move_at_edge_if_selection(0))
205 text.bind("<Right>", self.move_at_edge_if_selection(1))
206 text.bind("<<del-word-left>>", self.del_word_left)
207 text.bind("<<del-word-right>>", self.del_word_right)
208 text.bind("<<beginning-of-line>>", self.home_callback)
214 text.bind("<<open-new-window>>", self.new_callback)
215 text.bind("<<close-all-windows>>", self.flist.close_all_callback)
216 text.bind("<<open-class-browser>>", self.open_module_browser)
217 text.bind("<<open-path-browser>>", self.open_path_browser)
218 text.bind("<<open-turtle-demo>>", self.open_turtle_demo)
327 text.bind("<<autocomplete>>", autocomplete.autocomplete_event)
328 text.bind("<<try-open-completions>>",
330 text.bind("<<force-open-completions>>",
332 text.bind("<<expand-word>>", self.AutoExpand(self).expand_word_event)
333 text.bind("<<format-paragraph>>",
336 text.bind("<<flash-paren>>", parenmatch.flash_paren_event)
337 text.bind("<<paren-closed>>", parenmatch.paren_closed_event)
339 text.bind("<<check-module>>", scriptbinding.check_module_event)
340 text.bind("<<run-module>>", scriptbinding.run_module_event)
341 text.bind("<<run-custom>>", scriptbinding.run_custom_event)
342 text.bind("<<do-rstrip>>", self.Rstrip(self).do_rstrip)
344 text.bind("<<try-open-calltip>>", ctip.try_open_calltip_event)
346 text.bind("<<refresh-calltip>>", ctip.refresh_calltip_event)
347 text.bind("<<force-open-calltip>>", ctip.force_open_calltip_event)
348 text.bind("<<zoom-height>>", self.ZoomHeight(self).zoom_height_event)
351 text.bind("<<toggle-code-context>>",
360 text.bind("<<toggle-line-numbers>>", self.toggle_line_numbers_event)
439 self.text.bind("<<set-line-and-column>>", self.set_line_and_column)
1202 self.text.bind(vevent, getattr(ins, methodname))
1747 # text.bind("<<close-all-windows>>", edit.close_event)
1749 # edit.text.bind("<<close-window>>", edit.close_event)