Guido van Rossum | 504b0bf | 1999-01-02 21:28:54 +0000 | [diff] [blame] | 1 | windows_keydefs = \ |
Guido van Rossum | ac4797a | 2001-06-12 00:30:33 +0000 | [diff] [blame] | 2 | {'<<Copy>>': ['<Control-c>', '<Control-C>'], |
| 3 | '<<Cut>>': ['<Control-x>', '<Control-X>'], |
| 4 | '<<Paste>>': ['<Control-v>', '<Control-V>'], |
Guido van Rossum | 504b0bf | 1999-01-02 21:28:54 +0000 | [diff] [blame] | 5 | '<<beginning-of-line>>': ['<Control-a>', '<Home>'], |
| 6 | '<<center-insert>>': ['<Control-l>'], |
| 7 | '<<close-all-windows>>': ['<Control-q>'], |
| 8 | '<<close-window>>': ['<Alt-F4>'], |
| 9 | '<<dump-undo-state>>': ['<Control-backslash>'], |
| 10 | '<<end-of-file>>': ['<Control-d>'], |
Guido van Rossum | 504b0bf | 1999-01-02 21:28:54 +0000 | [diff] [blame] | 11 | '<<help>>': ['<F1>'], |
| 12 | '<<history-next>>': ['<Alt-n>'], |
| 13 | '<<history-previous>>': ['<Alt-p>'], |
| 14 | '<<interrupt-execution>>': ['<Control-c>'], |
| 15 | '<<open-class-browser>>': ['<Alt-c>'], |
| 16 | '<<open-module>>': ['<Alt-m>'], |
| 17 | '<<open-new-window>>': ['<Control-n>'], |
| 18 | '<<open-window-from-file>>': ['<Control-o>'], |
| 19 | '<<plain-newline-and-indent>>': ['<Control-j>'], |
| 20 | '<<redo>>': ['<Control-y>'], |
| 21 | '<<remove-selection>>': ['<Escape>'], |
| 22 | '<<save-copy-of-window-as-file>>': ['<Alt-Shift-s>'], |
| 23 | '<<save-window-as-file>>': ['<Alt-s>'], |
| 24 | '<<save-window>>': ['<Control-s>'], |
| 25 | '<<select-all>>': ['<Alt-a>'], |
| 26 | '<<toggle-auto-coloring>>': ['<Control-slash>'], |
Guido van Rossum | 906572a | 1999-01-04 16:35:02 +0000 | [diff] [blame] | 27 | '<<undo>>': ['<Control-z>']} |
Guido van Rossum | 504b0bf | 1999-01-02 21:28:54 +0000 | [diff] [blame] | 28 | |
| 29 | unix_keydefs = \ |
| 30 | {'<<Copy>>': ['<Alt-w>', '<Meta-w>'], |
| 31 | '<<Cut>>': ['<Control-w>'], |
| 32 | '<<Paste>>': ['<Control-y>'], |
| 33 | '<<beginning-of-line>>': ['<Control-a>', '<Home>'], |
| 34 | '<<center-insert>>': ['<Control-l>'], |
| 35 | '<<close-all-windows>>': ['<Control-x><Control-c>'], |
| 36 | '<<close-window>>': ['<Control-x><Control-0>', '<Control-x><Key-0>'], |
| 37 | '<<do-nothing>>': ['<Control-x>'], |
| 38 | '<<dump-undo-state>>': ['<Control-backslash>'], |
| 39 | '<<end-of-file>>': ['<Control-d>'], |
Guido van Rossum | 504b0bf | 1999-01-02 21:28:54 +0000 | [diff] [blame] | 40 | '<<help>>': ['<F1>'], |
| 41 | '<<history-next>>': ['<Alt-n>', '<Meta-n>'], |
| 42 | '<<history-previous>>': ['<Alt-p>', '<Meta-p>'], |
| 43 | '<<interrupt-execution>>': ['<Control-c>'], |
| 44 | '<<open-class-browser>>': ['<Control-x><Control-b>'], |
| 45 | '<<open-module>>': ['<Control-x><Control-m>'], |
| 46 | '<<open-new-window>>': ['<Control-x><Control-n>'], |
| 47 | '<<open-window-from-file>>': ['<Control-x><Control-f>'], |
| 48 | '<<plain-newline-and-indent>>': ['<Control-j>'], |
| 49 | '<<redo>>': ['<Alt-z>', '<Meta-z>'], |
| 50 | '<<save-copy-of-window-as-file>>': ['<Control-x><w>'], |
| 51 | '<<save-window-as-file>>': ['<Control-x><Control-w>'], |
| 52 | '<<save-window>>': ['<Control-x><Control-s>'], |
| 53 | '<<select-all>>': ['<Alt-a>', '<Meta-a>'], |
| 54 | '<<toggle-auto-coloring>>': ['<Control-slash>'], |
Guido van Rossum | 906572a | 1999-01-04 16:35:02 +0000 | [diff] [blame] | 55 | '<<undo>>': ['<Control-z>']} |