DeviceWorkstation.st
branchjv
changeset 8057 e3d9945d5d9f
parent 8037 d01faa4c1b02
child 8077 08cff8ab7e0a
equal deleted inserted replaced
8043:037bbeb448ca 8057:e3d9945d5d9f
   630     (   UserInterrupt       Break           (#'Cmd.' #'Ctrl.') 'Interrupt - enter debugger' )
   630     (   UserInterrupt       Break           (#'Cmd.' #'Ctrl.') 'Interrupt - enter debugger' )
   631     (   UserAbort           CtrlBreak       (CtrlCancel CtrlPause CmdY) 'Abort - do not enter debugger' )
   631     (   UserAbort           CtrlBreak       (CtrlCancel CtrlPause CmdY) 'Abort - do not enter debugger' )
   632     (   FlushInput          CtrlX                       'Flush (trow away) typeahead input' )
   632     (   FlushInput          CtrlX                       'Flush (trow away) typeahead input' )
   633                                     
   633                                     
   634 "/  (   DestroyView         CmdCtrlX                                                        )
   634 "/  (   DestroyView         CmdCtrlX                                                        )
   635     (   DestroyTopView      CmdCtrlX                                                        )
   635 "/  (   DestroyTopView      CmdCtrlX                                                        )
   636 
   636 
   637 "/  (   CloseWindowRequest  CmdF4                       'Close active window'               )
   637 "/  (   CloseWindowRequest  CmdF4                       'Close active window'               )
   638 
   638 
   639     (   DoIt                Cmdd            Ctrld       'DoIt - evaluate expression'        )
   639     (   DoIt                Cmdd            Ctrld       'DoIt - evaluate expression'        )
   640     (   InspectIt           Cmdi            Ctrlq       'InspectIt - evaluate expression and inspect result')  
   640     (   InspectIt           Cmdi            Ctrlq       'InspectIt - evaluate expression and inspect result')  
   641     (   PrintIt             Cmdp            Ctrlp       'PrintIt - evaluate expression and print result')
   641     (   PrintIt             Cmdp            Ctrlp       'PrintIt - evaluate expression and print result')
   642     (   ReplaceIt           CmdP                        'Replace selection with result of expression evaluation')
   642     (   ReplaceIt           CmdP                        'Replace selection with result of expression evaluation')
   643 
   643 
   644     (   BrowseIt            CmdB            CtrlB       'Evaluate expression and browse result''s class')
   644     (   BrowseIt            Cmdb            #(CmdB CtrlB)'Evaluate expression and browse result''s class')
   645     (   ImplementorsOfIt    CtrlI           CmdI        'Browse implementors of selected selector')
   645     (   ImplementorsOfIt    Cmdm            #(CmdI CtrlI)'Browse implementors of selected selector')
   646 "/  (   SendersOfIt         CtrlS           CmdS        'Browse senders of selected selector')
   646     (   SendersOfIt         Cmdn            #CmdS        'Browse senders of selected selector')
   647 
   647 
   648 
   648 
   649 "/      Logical             Shortcut        Aliases     Description
   649 "/      Logical             Shortcut        Aliases     Description
   650 "/      ===========================================================
   650 "/      ===========================================================
   651 
   651 
   693     (   PreviousWord        CtrlCursorLeft              'Move to previous word'             )
   693     (   PreviousWord        CtrlCursorLeft              'Move to previous word'             )
   694 
   694 
   695     (   ScrollUp            CtrlCursorUp                                                    )
   695     (   ScrollUp            CtrlCursorUp                                                    )
   696     (   ScrollDown          CtrlCursorDown                                                  )
   696     (   ScrollDown          CtrlCursorDown                                                  )
   697 
   697 
   698     (   SearchMatchingParent  Ctrlm                                                         )
   698 "/  (   SearchMatchingParent  Ctrlm                                                         )
   699     (   SelectMatchingParents Cmdm                      'Select up to matching parenthesis' )
   699     (   SelectMatchingParents Ctrlm                     'Select up to matching parenthesis' )
   700 
   700 
   701     (   SelectToEnd          CtrlE                      'Select from end of text'           )
   701     (   SelectToEnd          CtrlE                      'Select from end of text'           )
   702     (   SelectFromBeginning  CtrlA                      'Select from beginning of text'     )
   702     (   SelectFromBeginning  CtrlA                      'Select from beginning of text'     )
   703     (   ExpandSelectionByLine Cmdl                                                          )
   703     (   ExpandSelectionByLine Cmdl                                                          )
   704     (   ExpandSelectionByWord CmdW                                                          )
   704     (   ExpandSelectionByWord CmdW                                                          )