diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-03 22:57:42 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-03 22:57:42 (GMT) |
commit | daca630e4058fcdc5cb4397b5e49329e9b07776b (patch) | |
tree | 0d6c39416ab5f1e07a5a96744a77cbe1a0d88b7c /Tools/idle/config.txt | |
parent | 820314ea954963937ee51190ea916b1f54361d0f (diff) | |
download | cpython-daca630e4058fcdc5cb4397b5e49329e9b07776b.zip cpython-daca630e4058fcdc5cb4397b5e49329e9b07776b.tar.gz cpython-daca630e4058fcdc5cb4397b5e49329e9b07776b.tar.bz2 |
a ConfigParser for idle and three configuration files
Diffstat (limited to 'Tools/idle/config.txt')
-rw-r--r-- | Tools/idle/config.txt | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/Tools/idle/config.txt b/Tools/idle/config.txt new file mode 100644 index 0000000..545ac3c --- /dev/null +++ b/Tools/idle/config.txt @@ -0,0 +1,64 @@ +# IDLE reads several config files to determine user preferences. This +# file is the default config file. When IDLE starts, it will look in +# the following four files in order: +# config.txt the default config file +# config-[win/unix/mac].txt the generic platform config file +# config-[sys.platform].txt the specific platform config file +# ~/.idle the user config file +# XXX what about Windows? +# +# The last definition of each option is used. For example, you can +# override the default window size (80x24) by defining width and +# height options in the EditorWindow section of your ~/.idle file +# +# IDLE extensions can be enabled and disabled by adding them to one of +# the config files. To enable an extension, create a section with the +# same name as the extension, e.g. the [ParenMatch] section below. To +# disable an extension, either remove the section or add the the +# enable option with the value 0. + +[EditorWindow] +width: 80 +height: 24 +# fonts defined in config-[win/unix].txt + +[Colors] +normal-foreground: black +normal-background: white +# These color types are not explicitly defined: sync, todo, stdin +keyword-foreground: #ff7700 +comment-foreground: #dd0000 +string-foreground: #00aa00 +definition-foreground: #0000ff +hilite-foreground: #000068 +hilite-background: #006868 +break-foreground: #ff7777 +hit-foreground: #ffffff +hit-background: #000000 +stdout-foreground: blue +stderr-foreground: red +console-foreground: #770000 +error-background: #ff7777 +cursor-background: black + +[SearchBinding] + +[AutoIndent] + +[AutoExpand] + +[FormatParagraph] + +[ZoomHeight] + +[ScriptBinding] + +[CallTips] + +[ParenMatch] +enable: 0 ; ParenMatch conflicts with CallTips +style: expression +flash-delay: 500 +bell: 1 +hilite-foreground: black +hilite-background: #43cd80 ; SeaGreen3 |