Chris Muller uploaded a new version of ShoutCore to project Squeak 4.6:
http://source.squeak.org/squeak46/ShoutCore-ul.52.mcz==================== Summary ====================
Name: ShoutCore-ul.52
Author: ul
Time: 3 July 2015, 11:34:54.984 pm
UUID: 8d3fd95b-a5a6-4e10-9769-e0b0359fc30a
Ancestors: ShoutCore-mt.51
The syntaxHighlightingAsYouTypeAnsiAssignment preference should return the value of SyntaxHighlightingAsYouTypeAnsiAssignment instead of SyntaxHighlightingAsYouTypeLeftArrowAssignment.
=============== Diff against ShoutCore-mt.51 ===============
Item was changed:
----- Method: SHTextStylerST80 class>>syntaxHighlightingAsYouTypeAnsiAssignment (in category 'preferences') -----
syntaxHighlightingAsYouTypeAnsiAssignment
<preference: 'syntaxHighlightingAsYouTypeAnsiAssignment'
category: 'browsing'
description: '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.'
type: #Boolean>
+ ^SyntaxHighlightingAsYouTypeAnsiAssignment ifNil: [true]!
- ^SyntaxHighlightingAsYouTypeLeftArrowAssignment ifNil: [true]!