diff options
author | Abouzar Parvan <[email protected]> | 2022-03-26 16:04:19 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-26 12:34:19 +0100 |
commit | ea0e1f99e7df476638569a10ddcfdff1dbce52dd (patch) | |
tree | ac1b11579ac5053891eb71faf8c298253668b482 /lua/lvim/core/telescope.lua | |
parent | 36c836da6a9eb5173913fbf8646e69dcf35f3814 (diff) |
fix(telescope): set <cr> binding to actions.select_default only (#2395)
Diffstat (limited to 'lua/lvim/core/telescope.lua')
-rw-r--r-- | lua/lvim/core/telescope.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/telescope.lua b/lua/lvim/core/telescope.lua index 11a9655d..a4df4b3f 100644 --- a/lua/lvim/core/telescope.lua +++ b/lua/lvim/core/telescope.lua @@ -55,7 +55,7 @@ function M.config() ["<C-j>"] = actions.cycle_history_next, ["<C-k>"] = actions.cycle_history_prev, ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, - ["<CR>"] = actions.select_default + actions.center, + ["<CR>"] = actions.select_default, }, n = { ["<C-n>"] = actions.move_selection_next, |