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 extensions settings. |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 3 | # |
| 4 | # Each extension must have at least one section, named after the extension |
| 5 | # module. This section must contain an 'enable' item (=1 to enable the |
| 6 | # extension, =0 to disable it) and also contains any other general configuration |
| 7 | # items for the extension. Each extension may also define up to two optional |
| 8 | # sections named ExtensionName_bindings and ExtensionName_cfgBindings. If |
| 9 | # present, ExtensionName_bindings defines virtual event bindings for the |
| 10 | # extension that are not sensibly re-configurable. If present, |
| 11 | # ExtensionName_cfgBindings defines virtual event bindings for the extension |
| 12 | # that may be sensibly re-configured. |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 13 | # See config-keys.def for notes on specifying keys. |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 14 | |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 15 | [FormatParagraph] |
| 16 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 17 | [FormatParagraph_cfgBindings] |
| 18 | format-paragraph=<Alt-Key-q> |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 19 | |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 20 | [AutoExpand] |
| 21 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 22 | [AutoExpand_cfgBindings] |
| 23 | expand-word=<Alt-Key-slash> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 24 | |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 25 | [ZoomHeight] |
| 26 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 27 | [ZoomHeight_cfgBindings] |
| 28 | zoom-height=<Alt-Key-F2> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 29 | |
Kurt B. Kaiser | 969de45 | 2002-06-12 03:28:57 +0000 | [diff] [blame] | 30 | #[ExecBinding] # Revert to ScriptBinding |
| 31 | #enable=1 |
| 32 | #[ExecBinding_cfgBindings] |
| 33 | #run-complete-script=<Key-F5> |
| 34 | #stop-execution=<Key-Cancel> |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 35 | |
Kurt B. Kaiser | 969de45 | 2002-06-12 03:28:57 +0000 | [diff] [blame] | 36 | [ScriptBinding] |
| 37 | enable=1 |
| 38 | [ScriptBinding_cfgBindings] |
| 39 | run-script=<Key-F5> |
| 40 | #check-module=<Alt-Key-F5> |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 41 | #import-module=<Control-Key-F5> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 42 | |
| 43 | [CallTips] |
| 44 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 45 | [CallTips_bindings] |
| 46 | paren-open=<Key-parenleft> |
| 47 | paren-close=<Key-parenright> |
| 48 | check-calltip-cancel=<KeyRelease> |
| 49 | calltip-cancel=<ButtonPress> <Key-Escape> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 50 | |
| 51 | [ParenMatch] |
| 52 | enable=0 |
| 53 | style= expression |
| 54 | flash-delay= 500 |
| 55 | bell= 1 |
| 56 | hilite-foreground= black |
| 57 | hilite-background= #43cd80 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 58 | [ParenMatch_bindings] |
| 59 | flash-open-paren=<KeyRelease-parenright> <KeyRelease-bracketright> <KeyRelease-braceright> |
| 60 | check-restore=<KeyPress> |