diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 14:41:25 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 14:41:25 +0200 |
commit | 18f56a41f46c440be4de9fbd1465e026b81dbb0e (patch) | |
tree | db546d7e7b3302480d6b5abafaad6a7205ab09e1 | |
parent | 740e27ec856cc688f0ecf0ffe2b55b26ce771407 (diff) |
Add ability to search command history
-rw-r--r-- | .config/nvim/lua/cfg/which-key/init.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.config/nvim/lua/cfg/which-key/init.lua b/.config/nvim/lua/cfg/which-key/init.lua index ca87c6f..2a22c9c 100644 --- a/.config/nvim/lua/cfg/which-key/init.lua +++ b/.config/nvim/lua/cfg/which-key/init.lua @@ -190,6 +190,7 @@ local mappings = { name = "Search", b = { "<cmd>Telescope git_branches<cr>", "Checkout branch" }, c = { "<cmd>Telescope colorscheme<cr>", "Colorscheme" }, + d = { "<cmd>Telescope commands<cr>", "Commands History" }, f = { "<cmd>Telescope find_files<cr>", "Find File" }, h = { "<cmd>Telescope help_tags<cr>", "Find Help" }, M = { "<cmd>Telescope man_pages<cr>", "Man Pages" }, |