--- cut here: begin --------------------------------------------------
//*** Cursor Movement commands **********************************************
<Shift PgUp> mPrevPara() // this key can not work, because does not show up at all when running 'showkey.s'
<Shift PgDn> mNextPara() // this key can not work, because does not show up at all when running 'showkey.s'
<Alt F4> mLower() // used by Linux (quits the Linux session and the terminal)
<CtrlShift 8> ExecMacro("quote cmt") // In showkey shows <CtrlShift <character>>instead of expected <CtrlShift 8>
//*** Text editing commands *************************************************
//*** Block commands ********************************************************
<Shift Del> CutToWinClip() // shows in showkey but does not do anything
<Ctrl Ins> CopyToWinClip() // shows in showkey but does not do anything
<Shift Ins> PasteFromWinClip() // this key can not work, because does not show up at all when running 'showkey.s'
<Grey+> Copy() // inserts a '+'
<CtrlShift Grey+> CopyToWinClip() // used by Linux (decrease window size)
<CtrlShift Grey-> CutToWinClip() // used by Linux (decrease window size)
<Grey-> Cut() // inserts a '-'
<Ctrl Grey+> CopyAppend() // inserts a '+'
<Ctrl Grey-> CutAppend() // inserts a '-'
<Grey*> Paste() // inserts a '*'
<Ctrl Grey*> Paste(_OVERWRITE_) // inserts a '*'
<Ctrl PrtSc> Paste(_OVERWRITE_) // ?
<CtrlShift Grey*> PasteFromWinClip() // inserts a '*'
//*** Window commands *******************************************************
//*** BookMark commands *****************************************************
//*** Find/Replace commands *************************************************
//*** Macro commands ********************************************************
//*** File commands *********************************************************
//*** Other commands ********************************************************
<F1> Help() // works, but used by linuxmouse.s if running that TSE macro
<}> mCloseBrace() // shows <Shift }> instead of expected '}', so can not work
<f11> ExecMacro("togmax") // works, but shows 'DLL not supported 'togmax')
//*** Mouse keys ************************************************************
<LeftBtn> mLeftBtn() // this can not work, because does not show up at all when running 'showkey.s'
<Ctrl LeftBtn> MouseMarking(_COLUMN_) // seemed used by Linux
<Alt LeftBtn> MouseMarking(_LINE_) // outputs many codes, including <LeftBtn>, butn not <Alt LeftBtn> thus
<Shift LeftBtn> mShiftLeftBtn() // this can not work, because does not show up at all when running 'showkey.s'
<RightBtn> mRightBtn() // outputs many codes, including <LeftBtn>, butn not <RightBtn> thus
<Ctrl WheelUp> ResizeFont(1) // outputs many codes, so can not work
<Ctrl WheelDown> ResizeFont(-1) // outputs many codes, so can not work
<Shift WheelUp> RollLeft( GetWheelScrollLines()) // outputs many codes, so can not work
<Shift WheelDown> RollRight(GetWheelScrollLines()) // outputs many codes, so can not work
--- cut here: end ----------------------------------------------------