From dde0942980352b466e7e67d6eb2a5e553f6c44d4 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Tue, 2 Aug 2022 23:51:33 -0500 Subject: [PATCH] fix(nvim): use C-{d,s} for cycling tscope hist --- .../primary/config/lua/plugins/configs/telescope-nvim.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua b/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua index 40053227..6ab1cfa9 100755 --- a/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua +++ b/dots/.nvim-environments/primary/config/lua/plugins/configs/telescope-nvim.lua @@ -28,8 +28,8 @@ telescope.setup({ }, mappings = { i = { - [""] = actions.cycle_history_next, - [""] = actions.cycle_history_prev, + [""] = actions.cycle_history_next, + [""] = actions.cycle_history_prev, }, }, prompt_prefix = "  ",