The Command card allows you to type in debugging commands similar to dbx commands at the cosmocode prompt. Cut and paste features are available in this area, in addition to the following navigation control sequences:
Command | Description |
Completion | |
Esc | Completes a command. Beeps if completion is not possible or if there are multiple completions. |
Ctrl+d | On an empty line, lists all the available debugging commands in the command-line area. Otherwise lists all possible completions. Beeps if no completions are possible. |
Movement | |
up arrow | Move backward one line in the history list |
down arrow | Move forward one line in the history list |
left arrow | Move cursor back one character |
right arrow | Move cursor forward one character |
Alt+b | Move cursor back one word |
Alt+f | Move cursor forward one word |
Deletion | |
Ctrl+d | Delete forward one character |
Backspace | Delete backward one character |
Ctrl+w or Alt+Backspace | Delete backward one word |
Alt+d | Delete forward one word |
Ctrl+u | Delete entire line |
Other | |
Ctrl+y | Retrieve the last deleted lines or words |
Ctrl+s | Search forward in the history list |
!! | Repeat the last command |
Argument | Description |
DEFAULT | String displaying the value |
DECIMAL | Number (base 10) |
OCTAL | Number (base 8) |
HEX | Number (base 16) |
TYPE | Java data type of a variable |
HANDLE | Address or reference to the Java object |
TEXT | Formatted string display of an object |
ARRAY-TEXT | Formatted string display of an array |