diff options
author | LostNeophyte <[email protected]> | 2023-02-08 09:40:32 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-08 09:40:32 +0100 |
commit | 4bcf9d75a1133593d98ff87027373544743785dd (patch) | |
tree | 0455357076fc921444b9934ad958b9f8b86844fa /lua | |
parent | 98fb64764fd4bfabc93d5c3b9d1d26d38d8828d6 (diff) |
feat(which-key): keybind for `:Telescope resume` (#3826)
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lvim/core/which-key.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index ea79f03b..0e671782 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -287,6 +287,7 @@ M.config = function() t = { "<cmd>Telescope live_grep<cr>", "Text" }, k = { "<cmd>Telescope keymaps<cr>", "Keymaps" }, C = { "<cmd>Telescope commands<cr>", "Commands" }, + l = { "<cmd>Telescope resume<cr>", "Resume last search" }, p = { "<cmd>lua require('telescope.builtin').colorscheme({enable_preview = true})<cr>", "Colorscheme with Preview", |