blob: 6e2121952466f2004845c4ceae51689eae11e73c [file] [log] [blame]
Steven M. Gavac11ccf32001-09-24 09:43:17 +00001# 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. Gavac11ccf32001-09-24 09:43:17 +000020#
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. Gava5f28e8f2002-01-21 06:38:21 +000030editor-on-startup= 1
Steven M. Gava085eb1b2002-02-05 04:52:32 +000031user-help-browser= 0
32user-help-browser-command=
Steven M. Gavac11ccf32001-09-24 09:43:17 +000033
34[EditorWindow]
Steven M. Gavac11ccf32001-09-24 09:43:17 +000035width= 80
Steven M. Gavaad4f5322002-01-03 12:05:17 +000036height= 30
Steven M. Gavac11ccf32001-09-24 09:43:17 +000037font= courier
38font-size= 12
Steven M. Gavac112cd82002-01-22 05:56:40 +000039font-bold= 0
Steven M. Gavac11ccf32001-09-24 09:43:17 +000040
41[Indent]
42use-spaces= 1
43num-spaces= 4
44tab-cols= 4
45
46[Theme]
Steven M. Gavad0342cd2001-11-04 11:53:10 +000047default= 1
Steven M. Gavaad4f5322002-01-03 12:05:17 +000048name= IDLE Classic
Steven M. Gavac11ccf32001-09-24 09:43:17 +000049
50[Keys]
Steven M. Gavad0342cd2001-11-04 11:53:10 +000051default= 1
Steven M. Gava0cae01c2002-01-04 07:53:06 +000052name= IDLE Classic Windows
Steven M. Gavac11ccf32001-09-24 09:43:17 +000053
Steven M. Gava085eb1b2002-02-05 04:52:32 +000054[HelpFiles]
55#additional help sources, must be viewable by an html browser
56#will be listed on the Help/Other Help menu
57#option names are the sequence number of the option
58#values take the form: menu item;/path/to/help/source
59#obviously you can't use a semi-colon in a menu item or path and the path will
60#be platform specific because of path separators, drive specs etc.
61#eg.:
62#1= My Extra Help Source;/usr/share/doc/foo/index.html
63#2= Another Help Source;/path/to/another.html
Steven M. Gavac11ccf32001-09-24 09:43:17 +000064
Steven M. Gava085eb1b2002-02-05 04:52:32 +000065#[RecentFiles]
66#this section will only be present in the user config file idle-main.cfg
67#where it will record the most recently openned files in the form
68#IndexNum= /full/path/of/file , for display on the File/Recent Files menu
69#it is present here for reference only
70#eg.:
71#1=/most/recently/openned/file
72#2=/next/most/recently/openned/file
73#etc.