minor UI keys doc update

This commit is contained in:
thrust26 2020-10-11 11:04:30 +02:00
parent a021005b4e
commit 3c21f22584
1 changed files with 5 additions and 8 deletions

View File

@ -1871,18 +1871,15 @@
<table BORDER=2 cellpadding=4> <table BORDER=2 cellpadding=4>
<tr><th>Key</th><th>Editor Function</th></tr> <tr><th>Key</th><th>Editor Function</th></tr>
<tr><td>Home</td><td>Move cursor to beginning of line</td></tr> <tr><td>Home, Control + a</td><td>Move cursor to beginning of line</td></tr>
<tr><td>End</td><td>Move cursor to end of line</td></tr> <tr><td>End, Control + e</td><td>Move cursor to end of line</td></tr>
<tr><td>Delete</td><td>Remove character to right of cursor</td></tr> <tr><td>Delete, Control + d</td><td>Remove character to right of cursor</td></tr>
<tr><td>Backspace</td><td>Remove character to left of cursor</td></tr> <tr><td>Backspace</td><td>Remove character to left of cursor</td></tr>
<tr><td>Control + a</td><td>Same function as 'Home'</td></tr>
<tr><td>Control + e</td><td>Same function as 'End'</td></tr>
<tr><td>Control + d</td><td>Same function as 'Delete'</td></tr>
<tr><td>Control + k</td><td>Remove all characters from cursor to end of line</td></tr> <tr><td>Control + k</td><td>Remove all characters from cursor to end of line</td></tr>
<tr><td>Control + u</td><td>Remove all characters from cursor to beginning of line</td></tr> <tr><td>Control + u</td><td>Remove all characters from cursor to beginning of line</td></tr>
<tr><td>Control + w</td><td>Remove entire word to left of cursor</td></tr> <tr><td>Control + w</td><td>Remove entire word to left of cursor</td></tr>
<tr><td>Control + Left</td><td>Move cursor to beginning of word to the left</td></tr> <tr><td>Control + Left arrow</td><td>Move cursor to beginning of word to the left</td></tr>
<tr><td>Control + Right</td><td>Move cursor to beginning of word to the right</td></tr> <tr><td>Control + Right arrow</td><td>Move cursor to beginning of word to the right</td></tr>
<tr><td>Control + c, Control + Insert</td><td>Copy entire line to clipboard</td></tr> <tr><td>Control + c, Control + Insert</td><td>Copy entire line to clipboard</td></tr>
<tr><td>Control + v, Shift + Insert</td><td>Paste clipboard contents</td></tr> <tr><td>Control + v, Shift + Insert</td><td>Paste clipboard contents</td></tr>
<tr><td>Control + x, Shift + Delete</td><td>Cut entire line to clipboard</td></tr> <tr><td>Control + x, Shift + Delete</td><td>Cut entire line to clipboard</td></tr>