Custom telescope.nvim action for sending selections to harpoon.
- telescope.nvim (required)
- harpoon (required)
Plug 'asbjornhaland/telescope-send-to-harpoon.nvim'
Load the extension by doing:
require('telescope').load_extension('send_to_harpoon')
somewhere after your require('telescope').setup() call.
Add a keyboard shortcut to execute the action call.
require('telescope').setup {
defaults = {
mappings = {
i = {
["<C-h>"] = require'telescope'.extensions.send_to_harpoon.actions.send_selected_to_harpoon
},
}
},
}