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. |
| 28 | |
| 29 | [General] |
Steven M. Gava | 5f28e8f | 2002-01-21 06:38:21 +0000 | [diff] [blame^] | 30 | editor-on-startup= 1 |
| 31 | #run-in-separate-process= 1 |
| 32 | #help-browser= "" |
Steven M. Gava | 429a86af | 2001-10-23 10:42:12 +0000 | [diff] [blame] | 33 | |
| 34 | [HelpFiles] |
Steven M. Gava | 5f28e8f | 2002-01-21 06:38:21 +0000 | [diff] [blame^] | 35 | #idle="IDLE _Help","" |
| 36 | #python="_Python Documentation","" |
Steven M. Gava | 429a86af | 2001-10-23 10:42:12 +0000 | [diff] [blame] | 37 | #additional help sources |
| 38 | 1= |
| 39 | 2= |
| 40 | 3= |
| 41 | 4= |
| 42 | 5= |
| 43 | 6= |
| 44 | 7= |
| 45 | 8= |
| 46 | 9= |
| 47 | 10= |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 48 | |
| 49 | [EditorWindow] |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 50 | width= 80 |
Steven M. Gava | ad4f532 | 2002-01-03 12:05:17 +0000 | [diff] [blame] | 51 | height= 30 |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 52 | font= courier |
| 53 | font-size= 12 |
| 54 | |
| 55 | [Indent] |
| 56 | use-spaces= 1 |
| 57 | num-spaces= 4 |
| 58 | tab-cols= 4 |
| 59 | |
| 60 | [Theme] |
Steven M. Gava | d0342cd | 2001-11-04 11:53:10 +0000 | [diff] [blame] | 61 | default= 1 |
Steven M. Gava | ad4f532 | 2002-01-03 12:05:17 +0000 | [diff] [blame] | 62 | name= IDLE Classic |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 63 | |
| 64 | [Keys] |
Steven M. Gava | d0342cd | 2001-11-04 11:53:10 +0000 | [diff] [blame] | 65 | default= 1 |
Steven M. Gava | 0cae01c | 2002-01-04 07:53:06 +0000 | [diff] [blame] | 66 | name= IDLE Classic Windows |
Steven M. Gava | c11ccf3 | 2001-09-24 09:43:17 +0000 | [diff] [blame] | 67 | |
| 68 | [RecentFiles] |
| 69 | 1= |
| 70 | 2= |
| 71 | 3= |
| 72 | 4= |
| 73 | 5= |
| 74 | 6= |
| 75 | 7= |
| 76 | 8= |
| 77 | 9= |
| 78 | 10= |
| 79 | |