diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-07 17:55:32 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-03-07 17:55:32 (GMT) |
commit | 6b3edf051009ec94f65efb2817f6344cf0531480 (patch) | |
tree | 175ee338703bda6e3abdacc0c55c7e047ff3bfdb /Tools/idle/config.txt | |
parent | ba23bed340bab31b8c233f27acb181516f9de60c (diff) | |
download | cpython-6b3edf051009ec94f65efb2817f6344cf0531480.zip cpython-6b3edf051009ec94f65efb2817f6344cf0531480.tar.gz cpython-6b3edf051009ec94f65efb2817f6344cf0531480.tar.bz2 |
rename the global IdleConfParser object from IdleConf to idleconf
standard usage is now from IdleConf import idleconf
replace : with = in config.txt
Diffstat (limited to 'Tools/idle/config.txt')
-rw-r--r-- | Tools/idle/config.txt | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/Tools/idle/config.txt b/Tools/idle/config.txt index 545ac3c..c1d96c1 100644 --- a/Tools/idle/config.txt +++ b/Tools/idle/config.txt @@ -18,28 +18,28 @@ # enable option with the value 0. [EditorWindow] -width: 80 -height: 24 +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 +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] @@ -56,9 +56,9 @@ cursor-background: black [CallTips] [ParenMatch] -enable: 0 ; ParenMatch conflicts with CallTips -style: expression -flash-delay: 500 -bell: 1 -hilite-foreground: black -hilite-background: #43cd80 ; SeaGreen3 +enable= 0 +style= expression +flash-delay= 500 +bell= 1 +hilite-foreground= black +hilite-background= #43cd80 |