<Alt F10> ShowEntryScreen() // exits the TSE editor
add this to tse.ui:
<CtrlShift F10> ShowEntryScreen()( // works in xterm
---
<Alt F2> InsertLine() // can not be used in xterm
add this also to tse.ui:
<CtrlShift F2> InsertLine() // works in xterm
---
<Alt F4> mLower() // // can not be used in xterm (exits the editor)
add this also to tse.ui:
<Ctrl F4> mLower() // works in xterm
---
<Ctrl PrtSc> Paste(_OVERWRITE_) // can not be used in xterm
add this also to tse.ui:
<CtrlAlt P> Paste(_OVERWRITE_) // works in xterm
---
<CtrlShift 8> ExecMacro("quote cmt") // can not be used in xterm
add this also to tse.ui:<CtrlAlt 8> ExecMacro("quote cmt") // works in xterm
---
<CtrlShift Grey*> PasteFromWinClip() // can not be used in xterm
add this also to tse.ui:
<Ctrl V> PasteFromWinClip() // can added and then be used in xterm when PasteFromWinClip() is implemented by Semware
<CtrlShift Grey+> CopyToWinClip() // can not be used in xterm
add this also to tse.ui:
<Ctrl C> CopyToWinClip() // can be added and then be used in xterm when CopyToWinClip() is implemented by Semware
<CtrlShift Grey-> CutToWinClip() // can not be used in xterm
add this also to tse.ui
<Ctrl X> CutToWinClip() // can be added and then be used in xterm when CutToWinClip() is implemented by Semware
===
and additionally proposing to add these keys, because they are so frequently used and userful:
<Ctrl A> MarkAll()
<Ctrl Z> Undo()
Thanks