diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-12-03 20:34:43 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-12-03 20:34:43 (GMT) |
commit | 318016be65e6d1d56af1dac1c02edf5dd1cbd15e (patch) | |
tree | ccbb511d59247380a85a59f14f23b30313483e12 /Lib | |
parent | 7af24bd23746f3c32cb77cf3960e8cd24ccc4944 (diff) | |
download | cpython-318016be65e6d1d56af1dac1c02edf5dd1cbd15e.zip cpython-318016be65e6d1d56af1dac1c02edf5dd1cbd15e.tar.gz cpython-318016be65e6d1d56af1dac1c02edf5dd1cbd15e.tar.bz2 |
Don't use Alt-Fn or Ctrl-Fn keys, reserved for desktop changes in Unix.
Zoom becomes Alt-H "height"
Check Module becomes Alt-X "syntax"
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/config-extensions.def | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/Lib/idlelib/config-extensions.def b/Lib/idlelib/config-extensions.def index 2c0e81f..28f917d 100644 --- a/Lib/idlelib/config-extensions.def +++ b/Lib/idlelib/config-extensions.def @@ -2,14 +2,15 @@ # file is the default config file for idle extensions settings. # # Each extension must have at least one section, named after the extension -# module. This section must contain an 'enable' item (=1 to enable the -# extension, =0 to disable it) and also contains any other general configuration -# items for the extension. Each extension may also define up to two optional -# sections named ExtensionName_bindings and ExtensionName_cfgBindings. If -# present, ExtensionName_bindings defines virtual event bindings for the -# extension that are not sensibly re-configurable. If present, -# ExtensionName_cfgBindings defines virtual event bindings for the extension -# that may be sensibly re-configured. +# module. This section must contain an 'enable' item (=1 to enable the +# extension, =0 to disable it) and also contains any other general +# configuration items for the extension. Each extension may also define up to +# two optional sections named ExtensionName_bindings and +# ExtensionName_cfgBindings. If present, ExtensionName_bindings defines virtual +# event bindings for the extension that are not sensibly re-configurable. If +# present, ExtensionName_cfgBindings defines virtual event bindings for the +# extension that may be sensibly re-configured. + # See config-keys.def for notes on specifying keys. [FormatParagraph] @@ -25,20 +26,13 @@ expand-word=<Alt-Key-slash> [ZoomHeight] enable=1 [ZoomHeight_cfgBindings] -zoom-height=<Alt-Key-F2> - -#[ExecBinding] # Revert to ScriptBinding -#enable=1 -#[ExecBinding_cfgBindings] -#run-complete-script=<Key-F5> -#stop-execution=<Key-Cancel> +zoom-height=<Alt-Key-h> [ScriptBinding] enable=1 [ScriptBinding_cfgBindings] run-script=<Key-F5> -#check-module=<Alt-Key-F5> -#import-module=<Control-Key-F5> +check-module=<Alt-Key-x> [CallTips] enable=1 |