ksh shell works differently for ctrl+u

This commit is contained in:
Solene Rapenne 2022-01-05 20:41:15 +01:00
parent 5075752aef
commit 4863b24f14
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
<li><code>ctrl+r</code>: search in history</li>
<li><code>ctrl+a</code> and <code>ctrl+e</code> : move cursor to beginning or end of the line</li>
<li><code>alt+d</code> and <code>alt+backspace</code> : delete the word before or after the cursor</li>
<li><code>ctrl+k</code> and <code>ctrl+u</code> : delete the text before or after the cursor</li>
<li><code>ctrl+k</code> and <code>ctrl+u</code> : delete the text before or after the cursor (except in ksh for which <code>ctrl+u</code> delete the entire line)</li>
<li><code>ctrl+y</code>: paste the last deleted text</li>
</ul>
The shell can also be used in vi mode, but this I'll save for another webzine issue.