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 |
Kurt B. Kaiser | 318016b | 2002-12-03 20:34:43 +0000 | [diff] [blame] | 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 |
| 7 | # configuration items for the extension. Each extension may also define up to |
| 8 | # two optional sections named ExtensionName_bindings and |
| 9 | # ExtensionName_cfgBindings. If present, ExtensionName_bindings defines virtual |
| 10 | # event bindings for the extension that are not sensibly re-configurable. If |
| 11 | # present, ExtensionName_cfgBindings defines virtual event bindings for the |
| 12 | # extension that may be sensibly re-configured. |
| 13 | |
Steven M. Gava | e28ee75 | 2002-02-11 03:45:22 +0000 | [diff] [blame] | 14 | # See config-keys.def for notes on specifying keys. |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 15 | |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 16 | [FormatParagraph] |
| 17 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 18 | [FormatParagraph_cfgBindings] |
| 19 | format-paragraph=<Alt-Key-q> |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 20 | |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 21 | [AutoExpand] |
| 22 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 23 | [AutoExpand_cfgBindings] |
| 24 | expand-word=<Alt-Key-slash> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 25 | |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 26 | [ZoomHeight] |
| 27 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 28 | [ZoomHeight_cfgBindings] |
Kurt B. Kaiser | 710fa6c | 2002-12-23 03:35:27 +0000 | [diff] [blame] | 29 | zoom-height=<Alt-Key-2> |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 30 | |
Kurt B. Kaiser | 969de45 | 2002-06-12 03:28:57 +0000 | [diff] [blame] | 31 | [ScriptBinding] |
| 32 | enable=1 |
| 33 | [ScriptBinding_cfgBindings] |
| 34 | run-script=<Key-F5> |
Kurt B. Kaiser | 318016b | 2002-12-03 20:34:43 +0000 | [diff] [blame] | 35 | check-module=<Alt-Key-x> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 36 | |
| 37 | [CallTips] |
| 38 | enable=1 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 39 | [CallTips_bindings] |
| 40 | paren-open=<Key-parenleft> |
| 41 | paren-close=<Key-parenright> |
| 42 | check-calltip-cancel=<KeyRelease> |
| 43 | calltip-cancel=<ButtonPress> <Key-Escape> |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 44 | |
| 45 | [ParenMatch] |
| 46 | enable=0 |
| 47 | style= expression |
| 48 | flash-delay= 500 |
| 49 | bell= 1 |
| 50 | hilite-foreground= black |
| 51 | hilite-background= #43cd80 |
Steven M. Gava | 72c3bf0 | 2002-01-19 10:41:51 +0000 | [diff] [blame] | 52 | [ParenMatch_bindings] |
| 53 | flash-open-paren=<KeyRelease-parenright> <KeyRelease-bracketright> <KeyRelease-braceright> |
| 54 | check-restore=<KeyPress> |