neovim: add mappings for quickfix

This commit is contained in:
2023-08-31 17:22:50 +03:00
parent 7bbadc003a
commit ceb2ac3de8
2 changed files with 15 additions and 0 deletions

View File

@@ -13,9 +13,13 @@ telescope.setup({
["<C-j>"] = actions.move_selection_worse,
["<C-k>"] = actions.move_selection_better,
["<C-p>"] = layout_actions.toggle_preview,
["<C-x>"] = actions.add_selected_to_qflist,
["<C-t>"] = actions.toggle_selection,
},
n = {
["<C-p>"] = layout_actions.toggle_preview,
["<C-x>"] = actions.add_selected_to_qflist,
["<C-t>"] = actions.toggle_selection,
},
},
},