NewTools
NewTools copied to clipboard
binding for mac is breaking playground
How to reproduce easy
Redefine defaultShortcutKey
SpBrowseClassCommand>> defaultShortcutKey
^ ($b command mac , $b command mac)
| $b control win
| $b control unix
and now you cannot open anymore a playground.
You can also do
SpBrowseClassCommand>> defaultShortcutKey
self halt.
^ $b command mac
| $b control win
| $b control unix
Another fun part
SpBrowseClassCommand>> defaultShortcutKey
^ ($k command, $b command) mac
Is also breaking (you cannot open a new playground anymore) because the optional sequence is missing :) This is too much fun.
Because
defaultShortcutKey
^ ($k command, $b command) mac | $k control win | $k control unix
is working