feat: more neovim
parent
083e7ebcb8
commit
2fe5cb194a
|
@ -141,6 +141,10 @@
|
||||||
<code>f{char}</code>, <code>F{char}</code>: find forward/backward
|
<code>f{char}</code>, <code>F{char}</code>: find forward/backward
|
||||||
character
|
character
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<code>%</code>: jump between matching pair of <code>()</code>,
|
||||||
|
<code>[]</code>, <code>{}</code>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>Advance:</p>
|
<p>Advance:</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -398,6 +402,14 @@
|
||||||
>https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim</a
|
>https://superuser.com/questions/189947/how-do-i-reverse-selected-lines-order-in-vim</a
|
||||||
>
|
>
|
||||||
</li>
|
</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>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -71,6 +71,7 @@ Basic:
|
||||||
- `W`, `B`: WORD (word with special char) forward/backward
|
- `W`, `B`: WORD (word with special char) forward/backward
|
||||||
- `E`, `gE`: end of WORD current/before
|
- `E`, `gE`: end of WORD current/before
|
||||||
- `f{char}`, `F{char}`: find forward/backward character
|
- `f{char}`, `F{char}`: find forward/backward character
|
||||||
|
- `%`: jump between matching pair of `()`, `[]`, `{}`
|
||||||
|
|
||||||
Advance:
|
Advance:
|
||||||
|
|
||||||
|
@ -162,3 +163,4 @@ Ground rules:
|
||||||
- Hidden gem:
|
- Hidden gem:
|
||||||
- [Vim Tips (Revisited)](https://bluz71.github.io/2021/09/10/vim-tips-revisited.html)
|
- [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
|
- 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)
|
||||||
|
|
Loading…
Reference in New Issue