feat: learn new tricks vim

main
sudo pacman -Syu 2023-06-16 02:17:40 +07:00
parent 3096c827c5
commit f77dd33f09
2 changed files with 9 additions and 0 deletions

View File

@ -81,6 +81,12 @@
<li><code>0</code>: first character of line</li>
<li><code>$</code>: last character of line</li>
<li><code>w</code>, <code>b</code>: word forward/backward</li>
<li><code>e</code>, <code>ge</code>: end of word current/before</li>
<li>
<code>W</code>, <code>B</code>: WORD (word with special char)
forward/backward
</li>
<li><code>E</code>, <code>gE</code>: end of WORD current/before</li>
</ul>
<p>Jump advance:</p>
<ul>

View File

@ -25,6 +25,9 @@ Jump basic:
- `0`: first character of line
- `$`: last character of line
- `w`, `b`: word forward/backward
- `e`, `ge`: end of word current/before
- `W`, `B`: WORD (word with special char) forward/backward
- `E`, `gE`: end of WORD current/before
Jump advance: