[squeak-dev] The Trunk: ShoutCore-mt.93.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 9 07:34:19 UTC 2022


Marcel Taeumel uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-mt.93.mcz

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

Name: ShoutCore-mt.93
Author: mt
Time: 9 June 2022, 9:34:19.330903 am
UUID: 725e14cd-29ba-5e44-8900-9adde5eba497
Ancestors: ShoutCore-mt.92

Fixes preferences for Shout assignment conversion. You can only enable one or the other.

=============== Diff against ShoutCore-mt.92 ===============

Item was changed:
  ----- Method: SHTextStylerST80 class>>syntaxHighlightingAsYouTypeAnsiAssignment: (in category 'preferences') -----
+ syntaxHighlightingAsYouTypeAnsiAssignment: aBooleanOrNil
+ 
+ 	SyntaxHighlightingAsYouTypeAnsiAssignment := aBooleanOrNil.
+ 
+ 	aBooleanOrNil == true
+ 		ifTrue: [SyntaxHighlightingAsYouTypeLeftArrowAssignment := false].!
- syntaxHighlightingAsYouTypeAnsiAssignment: aBoolean
- 	SyntaxHighlightingAsYouTypeAnsiAssignment := aBoolean.!

Item was changed:
  ----- Method: SHTextStylerST80 class>>syntaxHighlightingAsYouTypeLeftArrowAssignment (in category 'preferences') -----
  syntaxHighlightingAsYouTypeLeftArrowAssignment
  	<preference: 'syntaxHighlightingAsYouTypeLeftArrowAssignment'
  		category: 'browsing'
  		description: '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.'
  		type: #Boolean>
+ 	^SyntaxHighlightingAsYouTypeLeftArrowAssignment ifNil: [false]!
- 	^SyntaxHighlightingAsYouTypeLeftArrowAssignment ifNil: [true]!

Item was changed:
  ----- Method: SHTextStylerST80 class>>syntaxHighlightingAsYouTypeLeftArrowAssignment: (in category 'preferences') -----
+ syntaxHighlightingAsYouTypeLeftArrowAssignment: aBooleanOrNil
+ 
+ 	SyntaxHighlightingAsYouTypeLeftArrowAssignment := aBooleanOrNil.
+ 	
+ 	aBooleanOrNil == true
+ 		ifTrue: [SyntaxHighlightingAsYouTypeAnsiAssignment := false].!
- syntaxHighlightingAsYouTypeLeftArrowAssignment: aBoolean
- 	SyntaxHighlightingAsYouTypeLeftArrowAssignment := aBoolean.!



More information about the Squeak-dev mailing list