UserPreferences.st
changeset 7614 1a2b6cb3f37d
parent 7604 a9d00b75c4be
child 7624 44f0109f5115
--- a/UserPreferences.st	Thu Sep 18 16:16:55 2003 +0200
+++ b/UserPreferences.st	Thu Sep 18 20:45:00 2003 +0200
@@ -58,34 +58,35 @@
     DefaultPreferences := self new.
 
     #(
-	#useNewChangesBrowser           false
-	#useNewInspector                false
-
-	#autoFormatting                 false
-	#syntaxColoring                 true
-	#fullSelectorCheck              false
-
-	#defaultSyntaxColor             (Color black)
-	#defaultSyntaxEmphasis          normal
-
-	#errorColor                     (Color red)
-
-	#commentColor                   (Color 12.5 12.5 100)
-	#commentEmphasis                normal
-
-	#methodSelectorEmphasis         bold
-	#selectorEmphasis               bold
-	#unimplementedSelectorColor     (Color red)
-	#unimplementedSelectorEmphasis  normal
+        #useNewChangesBrowser           false
+        #useNewInspector                false
+
+        #autoFormatting                 false
+        #syntaxColoring                 true
+        #fullSelectorCheck              false
+
+        #defaultSyntaxColor             (Color black)
+        #defaultSyntaxEmphasis          normal
+
+        #errorColor                     (Color red)
+
+        #commentColor                   (Color 12.5 12.5 100)
+        #commentEmphasis                normal
+
+        #methodSelectorEmphasis         bold
+        #selectorEmphasis               bold
+        #unimplementedSelectorColor     (Color red)
+        #unimplementedSelectorEmphasis  normal
 
 "/ I prefer red-underwave over red identifier ...
 "/        #badIdentifierColor             (Color red)
-
-	#constantColor                  (Color 25 0 0)
-
-	#showClockInLauncher            true
+        #instVarIdentifierColor         (Color 33 0 33)
+
+        #constantColor                  (Color 25 0 0)
+
+        #showClockInLauncher            true
      ) pairWiseDo:[:k :v |
-	DefaultPreferences at:k put:v decodeAsLiteralArray.
+        DefaultPreferences at:k put:v decodeAsLiteralArray.
     ].
 
 "/ I prefer red-underwave over red identifier ...
@@ -2179,5 +2180,5 @@
 !UserPreferences class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.127 2003-09-08 10:33:09 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UserPreferences.st,v 1.128 2003-09-18 18:45:00 cg Exp $'
 ! !