in pharo 50075 some shortcuts are removed
(issue
15630 Remove duplicate shortcut
definition (TextEditors actionMap vs
KM))
This is by intention. They
were defined in text editors action maps
and with the Keymapping
framework (pragma keymap).
Those were defined with two different
"command"-keys
(alt and ctrl).
This change is not yet visible, although I
defined a postload
you will see the change only after
TextEditor/SmalltalkEditior initialize
(all alt+ shortcut are removed now, only the
ctrl+ shortcuts should work)
alt+space / ctrl+space -> select word
alt+b/ctrl+b browseIt
alt+c/ctrl+c copy
alt+x/ctrl+x cut
alt+v/ctrl+v paste
alt+f/ctrl+f find
Some "duplicate" shortcuts weren't removed because the
shortcut
defined with the keymap pragma don't work (at least on
windows).
For example:
ctrl+a/alt+a defined with the action map
and ctrl+a defined by keymap pragam
this wasn't remove, because ctrl+a does not work on
windows vm
ctrl+m/alt+m defined by the action map
ctrl+m defined by keymap pragma
this wasn't remove, because ctrl+m does not work on
windows vm
please test the 50075 image, reinitialize editors
subclasses
and give feedback (linux and mac users too).