You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is defined in this method through the keyText: message. Like this:
menuCommandOn: aBuilder
<worldMenu>
(aBuilder item:#Playground)
parent:#InputOutput;
action: [ Smalltalk tools openWorkspace ];
order:1;
keyText:'o, p';
help:'A window used as a scratchpad area where fragments of Pharo code can be entered, stored, edited, and evaluated.';
iconName:#workspace
But, the shortcuts themselves are defined here:
PharoShortcuts>> openPlaygroundShortcut
^ $o meta, $p meta
This causes duplicated logic.
The text was updated successfully, but these errors were encountered:
The text shown for the shortcuts, this one:
Is defined in this method through the
keyText:
message. Like this:But, the shortcuts themselves are defined here:
This causes duplicated logic.
The text was updated successfully, but these errors were encountered: