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 general idle settings. |
| 3 | # |
| 4 | # When IDLE starts, it will look in |
| 5 | # the following two sets of files, in order: |
| 6 | # |
| 7 | # default configuration |
| 8 | # --------------------- |
| 9 | # config-main.def the default general config file |
| 10 | # config-extensions.def the default extension config file |
| 11 | # config-highlight.def the default highlighting config file |
| 12 | # config-keys.def the default keybinding config file |
| 13 | # |
| 14 | # user configuration |
| 15 | # ------------------- |
| 16 | # ~/.idlerc/idle-main.cfg the user general config file |
| 17 | # ~/.idlerc/idle-extensions.cfg the user extension config file |
| 18 | # ~/.idlerc/idle-highlight.cfg the user highlighting config file |
| 19 | # ~/.idlerc/idle-keys.cfg the user keybinding config file |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 20 | # |
| 21 | # Any options the user saves through the config dialog will be saved to |
| 22 | # the relevant user config file. Reverting any general setting to the |
| 23 | # default causes that entry to be wiped from the user file and re-read |
| 24 | # from the default file. User highlighting themes or keybinding sets are |
| 25 | # retained unless specifically deleted within the config dialog. Choosing |
| 26 | # one of the default themes or keysets just applies the relevant settings |
| 27 | # from the default file. |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 28 | # |
| 29 | # Additional help sources are listed in the [HelpFiles] section and must be |
| 30 | # viewable by a web browser (or the Windows Help viewer in the case of .chm |
| 31 | # files). These sources will be listed on the Help menu. The pattern is |
| 32 | # <sequence_number = menu item;/path/to/help/source> |
| 33 | # You can't use a semi-colon in a menu item or path. The path will be platform |
| 34 | # specific because of path separators, drive specs etc. |
| 35 | # |
| 36 | # It is best to use the Configuration GUI to set up additional help sources! |
| 37 | # Example: |
| 38 | #1 = My Extra Help Source;/usr/share/doc/foo/index.html |
| 39 | #2 = Another Help Source;/path/to/another.pdf |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 40 | |
| 41 | [General] |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 42 | editor-on-startup= 0 |
Steven M. Gava | 7981ce5 | 2002-06-11 04:45:34 +0000 | [diff] [blame] | 43 | print-command-posix=lpr %s |
| 44 | print-command-win=start /min notepad /p %s |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 45 | |
| 46 | [EditorWindow] |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 47 | width= 80 |
Steven M. Gava | ad4f532 | 2002-01-03 12:05:17 +0000 | [diff] [blame] | 48 | height= 30 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 49 | font= courier |
| 50 | font-size= 12 |
Steven M. Gava | c112cd8 | 2002-01-22 05:56:40 +0000 | [diff] [blame] | 51 | font-bold= 0 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 52 | |
| 53 | [Indent] |
| 54 | use-spaces= 1 |
| 55 | num-spaces= 4 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 56 | |
| 57 | [Theme] |
Steven M. Gava | d0342cd | 2001-11-04 11:53:10 +0000 | [diff] [blame] | 58 | default= 1 |
Steven M. Gava | ad4f532 | 2002-01-03 12:05:17 +0000 | [diff] [blame] | 59 | name= IDLE Classic |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 60 | |
| 61 | [Keys] |
Steven M. Gava | d0342cd | 2001-11-04 11:53:10 +0000 | [diff] [blame] | 62 | default= 1 |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 63 | name= IDLE Classic Windows |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 64 | |
Steven M. Gava | 085eb1b | 2002-02-05 04:52:32 +0000 | [diff] [blame] | 65 | [HelpFiles] |