Changeset 1898
- Timestamp:
- 11/15/06 12:58:17 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pyreadline/branches/refactor/doc/ChangeLog
r1896 r1898 1 2006-11-15 Jörgen Stenarson <jorgen.stenarson -at- bostream.nu> 2 * Rearranging pyreadlineconfig.ini 3 1 4 2006-11-13 Jörgen Stenarson <jorgen.stenarson -at- bostream.nu> 2 5 * Fixed bug in tab completion when point is not at end of line pyreadline/branches/refactor/pyreadline/configuration/pyreadlineconfig.ini
r1267 r1898 1 1 #Bind keys for exit (keys only work on empty lines 2 2 3 set_mode("emacs") #will cause following bind_keys to bind to emacs mode4 3 bind_exit_key("Control-d") 5 4 bind_exit_key("Control-z") … … 13 12 bind_key("Control-f", "forward_char") 14 13 bind_key("Alt-f", "forward_word") 15 bind_key("Shift-Right", "forward_char_extend_selection")16 bind_key("Shift-Left", "backward_char_extend_selection")17 bind_key("Shift-Control-Right", "forward_word_extend_selection")18 bind_key("Shift-Control-Left", "backward_word_extend_selection")19 14 bind_key("Alt-b", "backward_word") 20 15 bind_key("Clear", "clear_screen") … … 41 36 bind_key("Control-d", "delete_char") 42 37 bind_key("BackSpace", "backward_delete_char") 43 bind_key("Control-BackSpace", "backward_delete_word")44 38 #bind_key("Control-Shift-v", "quoted_insert") 45 39 bind_key("Control-space", "self_insert") … … 56 50 bind_key("Control-m", "set_mark") 57 51 bind_key("Control-q", "copy_region_to_clipboard") 58 bind_key("Control-x", "cut_selection_to_clipboard")59 bind_key("Control-Shift-x", "copy_selection_to_clipboard")60 52 bind_key("Control-v", "paste") 61 53 bind_key("Alt-v", "ipython_paste") … … 67 59 #Unbinding keys: 68 60 #un_bind_key("Home") 61 62 63 #new keybindings 64 bind_key("Shift-Right", "forward_char_extend_selection") 65 bind_key("Shift-Left", "backward_char_extend_selection") 66 bind_key("Shift-Control-Right", "forward_word_extend_selection") 67 bind_key("Shift-Control-Left", "backward_word_extend_selection") 68 bind_key("Control-BackSpace", "backward_delete_word") 69 bind_key("Control-x", "cut_selection_to_clipboard") 70 bind_key("Control-Shift-x", "copy_selection_to_clipboard") 69 71 70 72
