From 8d2bb359e47d816e67ff86b5ce2d8f5abfe2b631 Mon Sep 17 00:00:00 2001 From: qdrs Date: Sun, 15 Sep 2024 14:18:18 +0800 Subject: [PATCH] Typo in mappings.lua description (#2993) Toggleable horizontal terminal command was described incorrectly. --- lua/nvchad/mappings.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvchad/mappings.lua b/lua/nvchad/mappings.lua index dd60edb8..c7003084 100644 --- a/lua/nvchad/mappings.lua +++ b/lua/nvchad/mappings.lua @@ -89,7 +89,7 @@ end, { desc = "terminal toggleable vertical term" }) map({ "n", "t" }, "", function() require("nvchad.term").toggle { pos = "sp", id = "htoggleTerm" } -end, { desc = "terminal new horizontal term" }) +end, { desc = "terminal toggleable horizontal term" }) map({ "n", "t" }, "", function() require("nvchad.term").toggle { pos = "float", id = "floatTerm" }