fix(nvim): use C-{d,s} for cycling tscope hist

This commit is contained in:
Price Hiller 2022-08-02 23:51:33 -05:00
parent 23ad8e97a3
commit dde0942980

View File

@ -28,8 +28,8 @@ telescope.setup({
}, },
mappings = { mappings = {
i = { i = {
["<C-s>"] = actions.cycle_history_next, ["<C-d>"] = actions.cycle_history_next,
["<C-a>"] = actions.cycle_history_prev, ["<C-s>"] = actions.cycle_history_prev,
}, },
}, },
prompt_prefix = "", prompt_prefix = "",