diff options
author | Steven M. Gava <elguavas@python.net> | 2002-01-04 03:06:08 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2002-01-04 03:06:08 (GMT) |
commit | c597640515a9ca3aa1807cc633b8d7bf2aa4a4e6 (patch) | |
tree | 88cef87efa339ddbac738d35639fa4857693a8bd /Lib/idlelib/config-keys.def | |
parent | 43c2de230d926bf3befc7dc55b51e7b37ee5a58f (diff) | |
download | cpython-c597640515a9ca3aa1807cc633b8d7bf2aa4a4e6.zip cpython-c597640515a9ca3aa1807cc633b8d7bf2aa4a4e6.tar.gz cpython-c597640515a9ca3aa1807cc633b8d7bf2aa4a4e6.tar.bz2 |
move core functionality of SearchBindings.py into EditorWindow.py proper
adjust configuration sources accordingly
move SearchBindings.py into the attic now
Diffstat (limited to 'Lib/idlelib/config-keys.def')
-rw-r--r-- | Lib/idlelib/config-keys.def | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/Lib/idlelib/config-keys.def b/Lib/idlelib/config-keys.def index feec31c..5d3839d 100644 --- a/Lib/idlelib/config-keys.def +++ b/Lib/idlelib/config-keys.def @@ -5,7 +5,7 @@ # there is no space (eg. action=<key1>key2>) then the keys comprise a # single 'emacs style' multi-keystoke binding. -[IDLE CUA-ish] +[IDLE Classic Windows] Copy=<Control-c> <Control-C> Cut=<Control-x> <Control-X> Paste=<Control-v> <Control-V> @@ -33,8 +33,14 @@ save-window=<Control-s> select-all=<Alt-a> toggle-auto-coloring=<Control-slash> undo=<Control-z> +find=<Control-f> +find-again=<Control-g> <F3> +find-in-files=<Alt-F3> +find-selection=<Control-F3> +replace=<Control-h> +goto-line=<Alt-g> -[IDLE Emacs-ish] +[IDLE Classic Unix] Copy=<Alt-w> <Meta-w> Cut=<Control-w> Paste=<Control-y> @@ -62,3 +68,9 @@ save-window=<Control-x><Control-s> select-all=<Alt-a> <Meta-a> toggle-auto-coloring=<Control-slash> undo=<Control-z> +find=<Control-u><Control-u><Control-s> +find-again=<Control-u><Control-s> +find-in-files=<Alt-s> <Meta-s> +find-selection=<Control-s> +replace=<Control-r> +goto-line=<Alt-g> <Meta-g> |