From 54896bbc2d9dbebaace86fa8e3e009a796414035 Mon Sep 17 00:00:00 2001 From: yetone Date: Tue, 12 Nov 2024 13:29:54 +0800 Subject: [PATCH] feat: add show repo map cmd (#838) --- plugin/avante.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/avante.lua b/plugin/avante.lua index 86e03dc..c83f54a 100644 --- a/plugin/avante.lua +++ b/plugin/avante.lua @@ -116,3 +116,4 @@ cmd("SwitchProvider", function(opts) require("avante.api").switch_provider(vim.t end, }) cmd("Clear", function() require("avante.path").clear() end, { desc = "avante: clear all chat history" }) +cmd("ShowRepoMap", function() require("avante.repo_map").show() end, { desc = "avante: show repo map" })