Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 843 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 843 Bytes

telescope-send-to-harpoon.nvim

Custom telescope.nvim action for sending selections to harpoon.

Requirements

Setup

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
      },
    }
  },
}