From 88f559539a57911b1ee741354138381f801f139b Mon Sep 17 00:00:00 2001 From: Maciej Lebiest <68295743+Szwendacz99@users.noreply.github.com> Date: Sat, 7 Oct 2023 21:11:30 +0200 Subject: [PATCH] add C-r bind for telescope command history --- lua/general.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/general.lua b/lua/general.lua index c5b35c9..16b4b41 100644 --- a/lua/general.lua +++ b/lua/general.lua @@ -34,6 +34,7 @@ function switch_virtual_text() }) end map("n", "vt", ":lua switch_virtual_text()") +map("t", "", ":Telescope command_history") -- tab lines in normal and visual mode map("n", "", ">>")