From ac3891cae81f355e905ddf21a86ffb2da5eb3ac2 Mon Sep 17 00:00:00 2001 From: Chl <42654312+xlii-chl@users.noreply.github.com> Date: Fri, 3 Jul 2020 14:48:11 +0200 Subject: [PATCH] vim: Added '%' as a quick delimiter navigator (#1483) Works pour `{}`, `()`, `[]` and also `/* */`, `#ifdef` and other usual delimiters in programming languages. See ':help %'. --- vim.md | 1 + 1 file changed, 1 insertion(+) diff --git a/vim.md b/vim.md index aaca41f96..02e1e49f4 100644 --- a/vim.md +++ b/vim.md @@ -293,6 +293,7 @@ Uppercase ones are recursive (eg, `zO` is open recursively). | Shortcut | Description | | --- | --- | +| `%` | Nearest/matching `{[()]}` | | `[(` `[{` `[<` | Previous `(` or `{` or `<` | | `])` | Next | | --- | --- |