[squeak-dev] The Trunk: ShoutCore-rss.4.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Aug 23 20:25:01 UTC 2009


Andreas Raab uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-rss.4.mcz

==================== Summary ====================

Name: ShoutCore-rss.4
Author: rss
Time: 23 August 2009, 1:12:33 am
UUID: f7cc8e7e-a020-4b0b-896b-45c356e6045e
Ancestors: ShoutCore-bf.3

Removing cruft left over from colorPrint browser option and colorWhenPrettyPrinting preference.

=============== Diff against ShoutCore-bf.3 ===============

Item was changed:
  ----- Method: SHTextStylerST80 class>>initializePreferences (in category 'preferences') -----
  initializePreferences
  	
  	(Preferences preferenceAt: #syntaxHighlightingAsYouType) ifNil:[
+ 		Preferences
- 		Preferences 
- 			disable: #colorWhenPrettyPrinting;
  			disable: #browseWithPrettyPrint.
  		Preferences 
  			addPreference: #syntaxHighlightingAsYouType
  			 categories: #( browsing)
  			default: true 
  			balloonHelp: 'Enable, or disable, Shout - Syntax Highlighting As You Type. When enabled, code in Browsers and Workspaces is styled to reveal its syntactic structure. When the code is changed (by typing some characters, for example), the styling is changed so that it remains in sync with the modified code'].
  	(Preferences preferenceAt: #syntaxHighlightingAsYouTypeAnsiAssignment) ifNil:[
  		Preferences 
  			addPreference: #syntaxHighlightingAsYouTypeAnsiAssignment
  			 categories: #( browsing)
  			default: false 
  			balloonHelp: 'If true, and syntaxHighlightingAsYouType is enabled,  all left arrow assignments ( _ ) will be converted to the ANSI format ( := ) when a method is selected in a Browser. Whilst editing a method, this setting has no effect - both the left arrow and the ansi format may be used'.
  		(Preferences preferenceAt: #syntaxHighlightingAsYouTypeAnsiAssignment)
  			changeInformee: self
  			changeSelector: #ansiAssignmentPreferenceChanged].		
  	(Preferences preferenceAt: #syntaxHighlightingAsYouTypeLeftArrowAssignment) ifNil:[
  		Preferences 
  			addPreference: #syntaxHighlightingAsYouTypeLeftArrowAssignment
  		 	categories: #( browsing)
  			default: false 
  			balloonHelp: 'If true, and syntaxHighlightingAsYouType is enabled,  all ANSI format assignments ( := ) will be converted to left arrows ( _ ) when a method is selected in a Browser. Whilst editing a method, this setting has no effect - both the left arrow and the ansi format may be used'.
  		(Preferences preferenceAt: #syntaxHighlightingAsYouTypeLeftArrowAssignment)
  			changeInformee: self 
  			changeSelector: #leftArrowAssignmentPreferenceChanged ].							!




More information about the Squeak-dev mailing list