Can anyone confirm this
1) Open fresh Pharo3 image in Windows.
2) Go to TextEditor>>��buildTextEditorShortcutsOn:
3) Change the last line from��
�� �� �� (aBuilder shortcut: #cursorEnd)
category: #TextEditor
default: Character end ctrl win | Character end ctrl unix | Character end command mac
do: [ :target :morph :event | target cursorEnd: event ]
To
�� �� ���� (aBuilder shortcut: #cursorEnd)
category: #TextEditor
default: Character end ctrl win | Character end ctrl unix | Character end command mac
do: [ :target :morph :event |
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� self halt.
�� �� �� �� �� �� �� �� �� �� �� �� �� �� �� target cursorEnd: event ]
4) Take a workspace and do "Ctrl + d" on "1 inspect."
What happens for me is that it goes into the halt that we placed in step 3). And what i dont understand is why do it match the Keystroke
"Ctrl+d" with "Ctrl + END". If you go back the stack you will find that's exactly whats happening. Let me know if i made some mistakes here..
Thanks for helping,
G R Thushar