feat: more neovim

main
sudo pacman -Syu 2024-03-21 01:45:57 +07:00
parent 083e7ebcb8
commit 2fe5cb194a
2 changed files with 14 additions and 0 deletions

View File

@ -141,6 +141,10 @@
<code>f{char}</code>, <code>F{char}</code>: find forward/backward
character
</li>
<li>
<code>%</code>: jump between matching pair of <code>()</code>,
<code>[]</code>, <code>{}</code>
</li>
</ul>
<p>Advance:</p>
<ul>
@ -398,6 +402,14 @@
>https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim</a
>
</li>
<li>
<a
href="https://dev.to/m4xshen/3-vim-commands-for-blazingly-fast-navigation-between-brackets-55kc"
rel="nofollow"
>3 Vim commands for blazingly fast navigation between brackets
</a
>
</li>
</ul>
</li>
</ul>

View File

@ -71,6 +71,7 @@ Basic:
- `W`, `B`: WORD (word with special char) forward/backward
- `E`, `gE`: end of WORD current/before
- `f{char}`, `F{char}`: find forward/backward character
- `%`: jump between matching pair of `()`, `[]`, `{}`
Advance:
@ -162,3 +163,4 @@ Ground rules:
- Hidden gem:
- [Vim Tips (Revisited)](https://bluz71.github.io/2021/09/10/vim-tips-revisited.html)
- https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim
- [3 Vim commands for blazingly fast navigation between brackets ⚡](https://dev.to/m4xshen/3-vim-commands-for-blazingly-fast-navigation-between-brackets-55kc)