From 44c32f934691546b6a393d2ca1fdb956bb573549 Mon Sep 17 00:00:00 2001 From: Idris Akorede Ibrahim Date: Mon, 30 Mar 2026 11:31:12 +0100 Subject: [PATCH] fix(vim): remove invalid "tab" node type from highlights query The "tab" node type was removed from the Vim treesitter parser. The tab command is now parsed as unknown_command_name, which is already captured in the same keyword list. The stale "tab" entry causes a query error (Invalid node type "tab") on every command mode entry in Neovim. Remove the invalid node type. --- runtime/queries/vim/highlights.scm | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/queries/vim/highlights.scm b/runtime/queries/vim/highlights.scm index 96280cd42..c35986fa3 100644 --- a/runtime/queries/vim/highlights.scm +++ b/runtime/queries/vim/highlights.scm @@ -110,7 +110,6 @@ "cnext" "cprevious" "cNext" - "tab" "vertical" "leftabove" "aboveleft"