diff options
| author | Lazar Kirchev | 2012-04-30 12:53:24 +0000 |
|---|---|---|
| committer | Thomas Watson | 2012-04-30 14:58:48 +0000 |
| commit | 509eba0b8b120da52fc9fdc0ea9305e1efd7f1e6 (patch) | |
| tree | fdf43b69a76d22c21f3e9465ff6c7056485d0100 | |
| parent | 7b1ff4358baf2be21e334dc223dd83c822e87b8d (diff) | |
| download | eclipse.platform.common-509eba0b8b120da52fc9fdc0ea9305e1efd7f1e6.tar.gz eclipse.platform.common-509eba0b8b120da52fc9fdc0ea9305e1efd7f1e6.tar.xz eclipse.platform.common-509eba0b8b120da52fc9fdc0ea9305e1efd7f1e6.zip | |
Bug 368101 - [console] Documentation for the console is necessary - update the doc
| -rw-r--r-- | bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm b/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm index 75bdef25a..e060027e0 100644 --- a/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm +++ b/bundles/org.eclipse.platform.doc.isv/guide/console_shell.htm @@ -286,6 +286,20 @@ the bundle of the new console. It has the single method <code>getCandidates</code>, which get as a parameter the whole command line and the current cursor position in it, and returns a map with all completion candidates, and the position in the command line, on which the completion begins. The keys in the map are the candidates, and the values - the start position for the completion. + + <h2>Command Line Editing</h2> + + Both with telnet and ssh command line editing is available in addition to tab completion. The following functions are supported: + <ul> + <li>backspace - deletes the character to the left of the cursor</li> + <li>delete - deletes the character on the cursor position</li> + <li>home/end - moves the cursor to the beginning/end of the command line</li> + <li>left/right arrow - moves the cursor one character left/right</li> + <li>up/down arrow - moves backward/forward one entry in the command history</li> + <li>pageup/pagedown - moves to the first/last entry of the command history</li> + </ul> + + These functions are supported also when the the console is run standalone with Equinox. In PDE these features are not supported. <h2>Closing Telnet or Ssh Session</h2> |
