home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / kawa / kinst312a.exe / data1.cab / Executables / keyboard.txt < prev    next >
Text File  |  1998-10-26  |  4KB  |  111 lines

  1. Kawa Function Keys
  2. ------------------
  3. F1          Display Help window if editor is not open. If editor is open search for the 
  4.         keyword at cursor, For example, pressing F1 on word Applet in the editor will
  5.         display the help for keyword Applet.
  6.         Display help for the current class/variable/method in the package tree.
  7.  
  8. F2          If Editor is open search for the keyword in the package tree. For example, 
  9.         pressing F2 on the keyword Applet in the editor will find the class Applet in
  10.         the package tree and expand it. This works only for classes and interfaces names.
  11. CTRL+F2        Toogle bookmark at the current line.
  12. SHIFT+F2    Find Next bookmark
  13.  
  14. F3         Repeat previous find word forward.
  15. SHIFT+F3    Repeat previous find backwards
  16. CTRL+F3        Find Next with the word at cursor.
  17.  
  18. F4         Run. Please see Kawa documentation on which class file will run.
  19. CTRL+F4        Close the current File.
  20.  
  21. F5         Start Debug or Continue of already started.
  22.  
  23. F6         Find Next error in the output window.
  24. SHIFT+F6    Find previous error in the output window.
  25.  
  26. F7         Compile the current file.
  27. CTRL+F7        Compile Dirty files.
  28. SHIFT+F7    Rebuild All.
  29.  
  30. F8         Debug Step over.
  31. F9          Toggle breakpoint at the current line in the editor.
  32. F10         Debug Exit.
  33. F11        Debug Continue.
  34.  
  35. Kawa other keys
  36. ---------------
  37. ESC        Hides output window if visible. Maximizes the current help or editor window if
  38.         any open.
  39.  
  40. ALT+1        Display the Help window.
  41. ALT+2        Display output window.
  42. ALT+3        Display debug window.
  43. ALT+4        Display Search results window.
  44. ALT+5        Bring project window to top when floating.
  45. ALT+F9        Open the Breakpoints dialog
  46.  
  47. CTRL+J        Toggle compilers between Javac and any alternate compiler set in the Projects
  48.         compiler option dialog.
  49.  
  50. CTRL+BREAK    Cancel the current Build. This could be compiler, javadoc, rmic, jar etc..
  51.  
  52. CTRL+TAB    Switch between different MDI child windows.
  53.  
  54. Kawa Editor Keys
  55. ----------------
  56. HOME        First non space character of the line if cursor is after that character. First
  57.         character of the line if at the first non space character of the line.
  58. HOME+SHIFT    Same as home but select text.
  59. CTRL+HOME    Move to beginning of file
  60. CTRL+SHIFT+HOME    Select text from cursor to beginning of file
  61.  
  62. END        End of the line
  63. SHIFT+END    End of the line and select text
  64. CTRL+END    Move to end of file
  65. CTRL+SHIFT+END    Select text from cursor to end of file
  66.  
  67. CTRL+LEFT    Jump word left
  68. CTRL+SHIFT+LEFT Jump word left and select
  69.  
  70. CTRL+RIGHT    Jump word right
  71. CTRL+SHFT+RIGHT Jump word right and select
  72.  
  73. CTRL+SHIFT+DOWN Select current line from cursor and move line down
  74. CTRL+SHIFT+UP   Select current line from cursor and move line up
  75.  
  76. PGUP+SHIFT    Page Up and select text
  77. PGDN+SHIFT    Page Down and select text
  78.  
  79. SHIFT+DEL    Same as Cut
  80. SHIFT+INS    Same as Paste
  81.  
  82. CTRL+C        Copy Selected text
  83. CTRL+X        Cut Selected text
  84. CTRL+V        Paste text
  85.  
  86. CTRL+Z        Undo
  87. CTRL+Y        Redo
  88.  
  89. CTRL+F        Edit/Find
  90. CTRL+G        Edit/Goto
  91. CTRL+H        Edit/Replace
  92.  
  93. CTRL+N        File New
  94. CTRL+O        File Open
  95. CTRL+P        File Print
  96. CTRL+S        Save File
  97.  
  98. TAB        When more than one lines are selected in the editor then it is group indent.
  99. SHIFT+TAB    When more than one lines are selected in the editor then it is group unindent.
  100. CTRL+\        Cycles between the open and docked output window, the the open and docked project tree, and the open text file.
  101. CTRL+]        Finding matching brace or paranthesis
  102. CTRL+[        When more than one lines are selected comment or uncomment the the lines.
  103.  
  104. CTRL+W         Display a list of Editor Windows in a popup menu for quick switching between 
  105.         windows.
  106. CTRL+UpArrow    Scrolls the editor window up one line without moving the cursor location.
  107. CTRL+DownArrow    Scrolls the editor window down one line without moving the cursor location.
  108.  
  109. CTRL+B        Performs a browse based on highlighted text, or opens up the Source Browse dialog.
  110. CTRL+K        Performs a source browse for a class based on the highlighted text, or opens the Source Browse dialog.
  111. CTRL+M        Performs a source browse for a method based on the highlighted text, or opens the Source Browse dialog.