[squeak-dev] cmd-6 actions

Tobias Pape Das.Linux at gmx.de
Fri Apr 5 05:51:04 UTC 2013


Dear squeakers

I played around with the CMD-6 (or CTRL-6) “emphasis” 
shortcut. The documentation says, that you could add
color or even URLs to test that way.
  The former is true, but the only links you can generate are 
in-image.

So I digged around and found that SmalltalkEditor>>emphasisExtras
is not in sync with its actual actions.

It looks like

SmalltalkEditor>>emphasisExtras
	^#(
		'Do it' 
		'Print it' 
		'Link to comment of class' 
		'Link to definition of class' 
		'Link to hierarchy of class' 
		'Link to method'
	).

But shouldn't it be more like


SmalltalkEditor>>emphasisExtras
	^#(
		'Do it' 
		'Print it' 
		'Link to comment of class' 
		'Link to definition of class' 
		'Link to hierarchy of class' 
		'Link to method'
		'Link to URL'
		'Print hidden link info'
		'Copy hidden link info'
	).


?

Best
	-Tobias



More information about the Squeak-dev mailing list