Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 1 | # IDLE reads several config files to determine user preferences. This |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 2 | # file is the default config file for general idle settings. |
Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 3 | # |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 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 | # ------------------- |
Kurt B. Kaiser | 3f42a6d | 2003-08-09 01:51:28 +0000 | [diff] [blame] | 16 | # ~/.idlerc/config-main.cfg the user general config file |
| 17 | # ~/.idlerc/config-extensions.cfg the user extension config file |
| 18 | # ~/.idlerc/config-highlight.cfg the user highlighting config file |
| 19 | # ~/.idlerc/config-keys.cfg the user keybinding config file |
| 20 | # |
Kurt B. Kaiser | 0676dfd | 2005-02-03 01:37:14 +0000 | [diff] [blame] | 21 | # On Windows2000 and Windows XP the .idlerc directory is at |
| 22 | # Documents and Settings\<username>\.idlerc |
Kurt B. Kaiser | 3f42a6d | 2003-08-09 01:51:28 +0000 | [diff] [blame] | 23 | # |
| 24 | # On Windows98 it is at c:\.idlerc |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 25 | # |
| 26 | # Any options the user saves through the config dialog will be saved to |
Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 27 | # the relevant user config file. Reverting any general setting to the |
| 28 | # default causes that entry to be wiped from the user file and re-read |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 29 | # from the default file. User highlighting themes or keybinding sets are |
| 30 | # retained unless specifically deleted within the config dialog. Choosing |
Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 31 | # one of the default themes or keysets just applies the relevant settings |
| 32 | # from the default file. |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 33 | # |
| 34 | # Additional help sources are listed in the [HelpFiles] section and must be |
| 35 | # viewable by a web browser (or the Windows Help viewer in the case of .chm |
Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 36 | # files). These sources will be listed on the Help menu. The pattern is |
| 37 | # <sequence_number = menu item;/path/to/help/source> |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 38 | # You can't use a semi-colon in a menu item or path. The path will be platform |
| 39 | # specific because of path separators, drive specs etc. |
| 40 | # |
| 41 | # It is best to use the Configuration GUI to set up additional help sources! |
| 42 | # Example: |
| 43 | #1 = My Extra Help Source;/usr/share/doc/foo/index.html |
| 44 | #2 = Another Help Source;/path/to/another.pdf |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 45 | |
| 46 | [General] |
Kurt B. Kaiser | 8e92bf7 | 2003-01-14 22:03:31 +0000 | [diff] [blame] | 47 | editor-on-startup= 0 |
Kurt B. Kaiser | 6c638b6 | 2003-05-26 06:23:10 +0000 | [diff] [blame] | 48 | autosave= 0 |
Steven M. Gava | 7981ce5 | 2002-06-11 04:45:34 +0000 | [diff] [blame] | 49 | print-command-posix=lpr %s |
| 50 | print-command-win=start /min notepad /p %s |
Kurt B. Kaiser | 6c8579e | 2003-06-01 01:08:32 +0000 | [diff] [blame] | 51 | delete-exitfunc= 1 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 52 | |
| 53 | [EditorWindow] |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 54 | width= 80 |
Kurt B. Kaiser | 0539169 | 2003-05-26 20:35:53 +0000 | [diff] [blame] | 55 | height= 40 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 56 | font= courier |
Kurt B. Kaiser | 0539169 | 2003-05-26 20:35:53 +0000 | [diff] [blame] | 57 | font-size= 10 |
Steven M. Gava | c112cd8 | 2002-01-22 05:56:40 +0000 | [diff] [blame] | 58 | font-bold= 0 |
Kurt B. Kaiser | 6c638b6 | 2003-05-26 06:23:10 +0000 | [diff] [blame] | 59 | encoding= none |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 60 | |
Raymond Hettinger | 4e49b83 | 2004-06-04 06:31:08 +0000 | [diff] [blame] | 61 | [FormatParagraph] |
| 62 | paragraph=70 |
| 63 | |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 64 | [Indent] |
| 65 | use-spaces= 1 |
| 66 | num-spaces= 4 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 67 | |
| 68 | [Theme] |
Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 69 | default= 1 |
Steven M. Gava | ad4f532 | 2002-01-03 12:05:17 +0000 | [diff] [blame] | 70 | name= IDLE Classic |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 71 | |
| 72 | [Keys] |
Kurt B. Kaiser | 282f122 | 2003-05-18 02:21:55 +0000 | [diff] [blame] | 73 | default= 1 |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 74 | name= IDLE Classic Windows |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 75 | |
Kurt B. Kaiser | 0676dfd | 2005-02-03 01:37:14 +0000 | [diff] [blame] | 76 | [History] |
| 77 | cyclic=1 |
| 78 | |
Steven M. Gava | 085eb1b | 2002-02-05 04:52:32 +0000 | [diff] [blame] | 79 | [HelpFiles] |