Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 1 | # IDLE reads several config files to determine user preferences. This |
| 2 | # file is the default config file for idle key binding settings. |
Steven M. Gava | 17d0154 | 2001-12-03 00:37:28 +0000 | [diff] [blame] | 3 | # Where multiple keys are specified for an action: if they are separated |
| 4 | # by a space (eg. action=<key1> <key2>) then the keys are altenatives, if |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 5 | # there is no space (eg. action=<key1><key2>) then the keys comprise a |
| 6 | # single 'emacs style' multi-keystoke binding. The tk event specifier 'Key' |
| 7 | # is used in all cases, for consistency in auto key conflict checking in the |
| 8 | # configuration gui. |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 9 | |
Steven M. Gava | c597640 | 2002-01-04 03:06:08 +0000 | [diff] [blame] | 10 | [IDLE Classic Windows] |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 11 | copy=<Control-Key-c> |
| 12 | cut=<Control-Key-x> |
Steven M. Gava | 4974575 | 2002-02-18 01:43:11 +0000 | [diff] [blame] | 13 | paste=<Control-Key-m> |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 14 | beginning-of-line= <Key-Home> |
| 15 | center-insert=<Control-Key-l> |
| 16 | close-all-windows=<Control-Key-q> |
| 17 | close-window=<Alt-Key-F4> |
Kurt B. Kaiser | 84f4803 | 2002-09-26 22:13:22 +0000 | [diff] [blame] | 18 | do-nothing=<Control-Key-F12> |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 19 | end-of-file=<Control-Key-d> |
| 20 | python-docs=<Key-F1> |
| 21 | python-context-help=<Shift-Key-F1> |
| 22 | history-next=<Alt-Key-n> |
| 23 | history-previous=<Alt-Key-p> |
| 24 | interrupt-execution=<Control-Key-c> |
| 25 | open-class-browser=<Alt-Key-c> |
| 26 | open-module=<Alt-Key-m> |
| 27 | open-new-window=<Control-Key-n> |
| 28 | open-window-from-file=<Control-Key-o> |
| 29 | plain-newline-and-indent=<Control-Key-j> |
Steven M. Gava | 7981ce5 | 2002-06-11 04:45:34 +0000 | [diff] [blame] | 30 | print-window=<Control-Key-p> |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 31 | redo=<Control-Shift-Key-z> |
| 32 | remove-selection=<Key-Escape> |
| 33 | save-copy-of-window-as-file=<Alt-Shift-Key-s> |
Steven M. Gava | 0c5bc8c | 2002-03-27 02:25:44 +0000 | [diff] [blame] | 34 | save-window-as-file=<Control-Shift-Key-s> |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 35 | save-window=<Control-Key-s> |
Steven M. Gava | 7981ce5 | 2002-06-11 04:45:34 +0000 | [diff] [blame] | 36 | select-all=<Control-Key-a> |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 37 | toggle-auto-coloring=<Control-Key-slash> |
| 38 | undo=<Control-Key-z> |
| 39 | find=<Control-Key-f> |
| 40 | find-again=<Control-Key-g> <Key-F3> |
| 41 | find-in-files=<Alt-Key-F3> |
| 42 | find-selection=<Control-Key-F3> |
| 43 | replace=<Control-Key-h> |
| 44 | goto-line=<Alt-Key-g> |
Kurt B. Kaiser | 9ef8f42 | 2002-09-14 03:18:43 +0000 | [diff] [blame] | 45 | smart-backspace=<Key-BackSpace> |
| 46 | newline-and-indent=<Key-Return> <Key-KP_Enter> |
| 47 | smart-indent=<Key-Tab> |
| 48 | indent-region=<Control-Key-bracketright> |
| 49 | dedent-region=<Control-Key-bracketleft> |
| 50 | comment-region=<Alt-Key-3> |
| 51 | uncomment-region=<Alt-Key-4> |
| 52 | tabify-region=<Alt-Key-5> |
| 53 | untabify-region=<Alt-Key-6> |
| 54 | toggle-tabs=<Alt-Key-t> |
| 55 | change-indentwidth=<Alt-Key-u> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 56 | |
Steven M. Gava | c597640 | 2002-01-04 03:06:08 +0000 | [diff] [blame] | 57 | [IDLE Classic Unix] |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 58 | copy=<Alt-Key-w> <Meta-Key-w> |
| 59 | cut=<Control-Key-w> |
| 60 | paste=<Control-Key-y> |
| 61 | beginning-of-line=<Control-Key-a> <Key-Home> |
| 62 | center-insert=<Control-Key-l> |
| 63 | close-all-windows=<Control-Key-x><Control-Key-c> |
| 64 | close-window=<Control-Key-x><Control-Key-0> |
| 65 | do-nothing=<Control-Key-x> |
| 66 | end-of-file=<Control-Key-d> |
| 67 | history-next=<Alt-Key-n> <Meta-Key-n> |
| 68 | history-previous=<Alt-Key-p> <Meta-Key-p> |
| 69 | interrupt-execution=<Control-Key-c> |
| 70 | open-class-browser=<Control-Key-x><Control-Key-b> |
| 71 | open-module=<Control-Key-x><Control-Key-m> |
| 72 | open-new-window=<Control-Key-x><Control-Key-n> |
| 73 | open-window-from-file=<Control-Key-x><Control-Key-f> |
| 74 | plain-newline-and-indent=<Control-Key-j> |
Steven M. Gava | 7981ce5 | 2002-06-11 04:45:34 +0000 | [diff] [blame] | 75 | print-window=<Control-x><Control-Key-p> |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 76 | python-docs=<Control-Key-h> |
| 77 | python-context-help=<Control-Shift-Key-h> |
| 78 | redo=<Alt-Key-z> <Meta-Key-z> |
| 79 | remove-selection=<Key-Escape> |
| 80 | save-copy-of-window-as-file=<Control-Key-x><Control-Key-y> |
| 81 | save-window-as-file=<Control-Key-x><Control-Key-w> |
| 82 | save-window=<Control-Key-x><Control-Key-s> |
| 83 | select-all=<Alt-Key-a> <Meta-Key-a> |
| 84 | toggle-auto-coloring=<Control-Key-slash> |
| 85 | undo=<Control-Key-z> |
| 86 | find=<Control-Key-u><Control-Key-u><Control-Key-s> |
| 87 | find-again=<Control-Key-u><Control-Key-s> |
| 88 | find-in-files=<Alt-Key-s> <Meta-Key-s> |
| 89 | find-selection=<Control-Key-s> |
| 90 | replace=<Control-Key-r> |
| 91 | goto-line=<Alt-Key-g> <Meta-Key-g> |
Kurt B. Kaiser | 9ef8f42 | 2002-09-14 03:18:43 +0000 | [diff] [blame] | 92 | smart-backspace=<Key-BackSpace> |
| 93 | newline-and-indent=<Key-Return> <Key-KP_Enter> |
| 94 | smart-indent=<Key-Tab> |
| 95 | indent-region=<Control-Key-bracketright> |
| 96 | dedent-region=<Control-Key-bracketleft> |
| 97 | comment-region=<Alt-Key-3> |
| 98 | uncomment-region=<Alt-Key-4> |
| 99 | tabify-region=<Alt-Key-5> |
| 100 | untabify-region=<Alt-Key-6> |
| 101 | toggle-tabs=<Alt-Key-t> |
| 102 | change-indentwidth=<Alt-Key-u> |
Tony Lownds | e49dd4c | 2002-09-23 01:11:57 +0000 | [diff] [blame] | 103 | |
Tony Lownds | f18efa5 | 2002-09-23 00:57:10 +0000 | [diff] [blame] | 104 | [IDLE Classic Mac] |
| 105 | copy=<Command-Key-c> |
| 106 | cut=<Command-Key-x> |
| 107 | paste=<Command-Key-v> |
| 108 | beginning-of-line= <Key-Home> |
| 109 | center-insert=<Control-Key-l> |
| 110 | close-all-windows=<Command-Key-q> |
| 111 | close-window=<Command-Key-w> |
Kurt B. Kaiser | 84f4803 | 2002-09-26 22:13:22 +0000 | [diff] [blame] | 112 | do-nothing=<Control-Key-F12> |
Tony Lownds | f18efa5 | 2002-09-23 00:57:10 +0000 | [diff] [blame] | 113 | end-of-file=<Control-Key-d> |
| 114 | python-docs=<Key-F1> |
| 115 | python-context-help=<Shift-Key-F1> |
Tony Lownds | 6565b26 | 2002-09-29 00:10:15 +0000 | [diff] [blame] | 116 | history-next=<Control-Key-n> |
| 117 | history-previous=<Control-Key-p> |
Tony Lownds | f18efa5 | 2002-09-23 00:57:10 +0000 | [diff] [blame] | 118 | interrupt-execution=<Control-Key-c> |
| 119 | open-class-browser=<Command-Key-b> |
| 120 | open-module=<Command-Key-m> |
| 121 | open-new-window=<Command-Key-n> |
| 122 | open-window-from-file=<Command-Key-o> |
| 123 | plain-newline-and-indent=<Control-Key-j> |
| 124 | print-window=<Command-Key-p> |
| 125 | redo=<Shift-Command-Key-z> |
| 126 | remove-selection=<Key-Escape> |
| 127 | save-window-as-file=<Shift-Command-Key-s> |
| 128 | save-window=<Command-Key-s> |
| 129 | save-copy-of-window-as-file=<Option-Command-Key-s> |
| 130 | select-all=<Command-Key-a> |
| 131 | toggle-auto-coloring=<Control-Key-slash> |
| 132 | undo=<Command-Key-z> |
| 133 | find=<Command-Key-f> |
| 134 | find-again=<Command-Key-g> <Key-F3> |
| 135 | find-in-files=<Command-Key-F3> |
| 136 | find-selection=<Shift-Command-Key-F3> |
| 137 | replace=<Command-Key-r> |
| 138 | goto-line=<Command-Key-j> |
| 139 | smart-backspace=<Key-BackSpace> |
| 140 | newline-and-indent=<Key-Return> <Key-KP_Enter> |
| 141 | smart-indent=<Key-Tab> |
| 142 | indent-region=<Command-Key-bracketright> |
| 143 | dedent-region=<Command-Key-bracketleft> |
| 144 | comment-region=<Control-Key-3> |
| 145 | uncomment-region=<Control-Key-4> |
| 146 | tabify-region=<Control-Key-5> |
| 147 | untabify-region=<Control-Key-6> |
| 148 | toggle-tabs=<Control-Key-t> |
| 149 | change-indentwidth=<Control-Key-u> |