Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

add shortcuts for telescope search history #258

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions lua/doom/modules/config/doom-telescope.lua
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ return function()
["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist,
["<Leader>f"] = actions.close, -- works like a toggle, sometimes can be buggy
["<CR>"] = actions.select_default + actions.center,
["<C-n>"] = actions.cycle_history_next,
["<C-p>"] = actions.cycle_history_prev,
},
n = {
["<C-j>"] = actions.move_selection_next,
Expand Down