From 2fe5cb194a2ad2c2e7d13e46383b37f149d0018f Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Thu, 21 Mar 2024 01:45:57 +0700 Subject: [PATCH] feat: more neovim --- docs/2023-05-03-neovim.html | 12 ++++++++++++ posts/2023-05-03-neovim.md | 2 ++ 2 files changed, 14 insertions(+) diff --git a/docs/2023-05-03-neovim.html b/docs/2023-05-03-neovim.html index 094af1b..7518d1a 100644 --- a/docs/2023-05-03-neovim.html +++ b/docs/2023-05-03-neovim.html @@ -141,6 +141,10 @@ f{char}, F{char}: find forward/backward character +
  • + %: jump between matching pair of (), + [], {} +
  • Advance:

    diff --git a/posts/2023-05-03-neovim.md b/posts/2023-05-03-neovim.md index 8337112..dc98485 100644 --- a/posts/2023-05-03-neovim.md +++ b/posts/2023-05-03-neovim.md @@ -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)