On Dec 29, 2015, at 20:36, Nicolai Hess <nicolaihess@gmail.com> wrote:If you just want to redefine some shortcuts (like in this example), it isn't necessary to remove the defined (category-shortcuts) but justadd the new ones:
| morph |
morph := RubScrolledTextMorph new.
(morph textArea)
on: $s command do: [42 inspect ];
on: $s control do: [42 inspect ].
morph openInWorld.