From 461a4a815807275a20a24df37f1d0c89e910d26a Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Tue, 28 Apr 2026 03:45:04 +0200 Subject: [PATCH] fix(git): use git ft for manual log invocation --- lua/git/cmd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/git/cmd.lua b/lua/git/cmd.lua index 27864ec..c30da6d 100644 --- a/lua/git/cmd.lua +++ b/lua/git/cmd.lua @@ -11,7 +11,7 @@ local M = {} ---@type table local SPLIT_HANDLERS = { - log = { ft = "gitlog" }, + log = { ft = "git" }, show = { ft = "git", needs_ref = true }, ["cat-file"] = { ft = "git", needs_ref = true }, diff = { ft = "diff" },