From 6b0a282c9cac96370aac7fb97935c3b11c752313 Mon Sep 17 00:00:00 2001 From: Mostafa Mahmoud Date: Mon, 17 Mar 2025 20:40:07 +0200 Subject: [PATCH] docs: Fix wrong html-like tags shortcut for Vim (#26792) Release Notes: - N/A --- docs/src/vim.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/vim.md b/docs/src/vim.md index 61998e993067c421db7c0270e6e7943e2ee2a1ba..994387386f63ff911960147ebd4f47d6dc2b2f9d 100644 --- a/docs/src/vim.md +++ b/docs/src/vim.md @@ -105,8 +105,8 @@ Treesitter is a powerful tool that Zed uses to understand the structure of your | A comment | `g c` | | An argument, or list item, etc. | `i a` | | An argument, or list item, etc. (including trailing comma) | `a a` | -| Around an HTML-like tag | `i a` | -| Inside an HTML-like tag | `i a` | +| Around an HTML-like tag | `a t` | +| Inside an HTML-like tag | `i t` | | The current indent level, and one line before and after | `a I` | | The current indent level, and one line before | `a i` | | The current indent level | `i i` |