From 25a50a220321f6fc38c07964093e93195030c57a Mon Sep 17 00:00:00 2001 From: Emmanuel Touzery Date: Tue, 23 Nov 2021 19:30:01 +0100 Subject: [PATCH] add shortcuts for telescope search history --- lua/doom/modules/config/doom-telescope.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/doom/modules/config/doom-telescope.lua b/lua/doom/modules/config/doom-telescope.lua index 06e0b1e9e..bb3f3694b 100644 --- a/lua/doom/modules/config/doom-telescope.lua +++ b/lua/doom/modules/config/doom-telescope.lua @@ -62,6 +62,8 @@ return function() [""] = actions.smart_send_to_qflist + actions.open_qflist, ["f"] = actions.close, -- works like a toggle, sometimes can be buggy [""] = actions.select_default + actions.center, + [""] = actions.cycle_history_next, + [""] = actions.cycle_history_prev, }, n = { [""] = actions.move_selection_next,