blob: 5ddd098de1e07f26871839b8779fb89137397349 [file] [log] [blame]
Kurt B. Kaiser282f1222003-05-18 02:21:55 +00001# IDLE reads several config files to determine user preferences. This
Steven M. Gavac11ccf32001-09-24 09:43:17 +00002# file is the default config file for general idle settings.
Kurt B. Kaiser282f1222003-05-18 02:21:55 +00003#
Steven M. Gavac11ccf32001-09-24 09:43:17 +00004# 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. Kaiser3f42a6d2003-08-09 01:51:28 +000016# ~/.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. Kaiser0676dfd2005-02-03 01:37:14 +000021# On Windows2000 and Windows XP the .idlerc directory is at
22# Documents and Settings\<username>\.idlerc
Kurt B. Kaiser3f42a6d2003-08-09 01:51:28 +000023#
24# On Windows98 it is at c:\.idlerc
Steven M. Gavac11ccf32001-09-24 09:43:17 +000025#
26# Any options the user saves through the config dialog will be saved to
Kurt B. Kaiser282f1222003-05-18 02:21:55 +000027# 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. Gavac11ccf32001-09-24 09:43:17 +000029# from the default file. User highlighting themes or keybinding sets are
30# retained unless specifically deleted within the config dialog. Choosing
Kurt B. Kaiser282f1222003-05-18 02:21:55 +000031# one of the default themes or keysets just applies the relevant settings
32# from the default file.
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +000033#
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. Kaiser282f1222003-05-18 02:21:55 +000036# files). These sources will be listed on the Help menu. The pattern is
37# <sequence_number = menu item;/path/to/help/source>
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +000038# 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. Gavac11ccf32001-09-24 09:43:17 +000045
46[General]
Kurt B. Kaiser8e92bf72003-01-14 22:03:31 +000047editor-on-startup= 0
Kurt B. Kaiser6c638b62003-05-26 06:23:10 +000048autosave= 0
Steven M. Gava7981ce52002-06-11 04:45:34 +000049print-command-posix=lpr %s
50print-command-win=start /min notepad /p %s
Kurt B. Kaiser6c8579e2003-06-01 01:08:32 +000051delete-exitfunc= 1
Steven M. Gavac11ccf32001-09-24 09:43:17 +000052
53[EditorWindow]
Steven M. Gavac11ccf32001-09-24 09:43:17 +000054width= 80
Kurt B. Kaiser05391692003-05-26 20:35:53 +000055height= 40
Steven M. Gavac11ccf32001-09-24 09:43:17 +000056font= courier
Kurt B. Kaiser05391692003-05-26 20:35:53 +000057font-size= 10
Steven M. Gavac112cd82002-01-22 05:56:40 +000058font-bold= 0
Kurt B. Kaiser6c638b62003-05-26 06:23:10 +000059encoding= none
Steven M. Gavac11ccf32001-09-24 09:43:17 +000060
Raymond Hettinger4e49b832004-06-04 06:31:08 +000061[FormatParagraph]
62paragraph=70
63
Steven M. Gavac11ccf32001-09-24 09:43:17 +000064[Indent]
65use-spaces= 1
66num-spaces= 4
Steven M. Gavac11ccf32001-09-24 09:43:17 +000067
68[Theme]
Kurt B. Kaiser282f1222003-05-18 02:21:55 +000069default= 1
Steven M. Gavaad4f5322002-01-03 12:05:17 +000070name= IDLE Classic
Steven M. Gavac11ccf32001-09-24 09:43:17 +000071
72[Keys]
Kurt B. Kaiser282f1222003-05-18 02:21:55 +000073default= 1
Steven M. Gava0cae01c2002-01-04 07:53:06 +000074name= IDLE Classic Windows
Steven M. Gavac11ccf32001-09-24 09:43:17 +000075
Kurt B. Kaiser0676dfd2005-02-03 01:37:14 +000076[History]
77cyclic=1
78
Steven M. Gava085eb1b2002-02-05 04:52:32 +000079[HelpFiles]