Compare commits

...

3 Commits

Author SHA1 Message Date
Solene Rapenne 94ab7cada7 new idea 2022-01-14 09:16:19 +01:00
Solene Rapenne 4863b24f14 ksh shell works differently for ctrl+u 2022-01-05 20:41:15 +01:00
Solene Rapenne 5075752aef mention hastings@ work on mtw 2022-01-05 20:41:03 +01:00
3 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ difference between zzz and ZZZ
Current changes
---------------
drm update https://marc.info/?l=openbsd-cvs&m=164214312609256&w=2
Links
-----

View File

@ -4,6 +4,7 @@
<ul>
<li>The bottom part of the uvm handler <a href="https://marc.info/?l=openbsd-cvs&m=164069735510886&w=2" class="permalink">has been unlocked</a>. I'm not an expert here but it has yielded a significant performance improvement on desktop usage for me and it's an important milestone for continuing the unlocking work.</li>
<li>Base llvm <a href="https://marc.info/?l=openbsd-cvs&m=163974394917393&w=2" class="permalink">updated to 13</a></li>
<li>New wifi driver mtw for MediaTek MT7601U devices <a href="https://marc.info/?l=openbsd-cvs&m=164000871323401&w=2" class="permalink">imported by new developer James Hastings (hastings@)</a></li>
<li>ssh received support for <a href="https://www.undeadly.org/cgi?action=article;sid=20211220061017" class="permalink">ssh-agent restriction</a></li>
<li>Lots of cleaning in libcrypto, libressl, dhcpleased, and many others</li>
</ul>

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.