mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-14 01:50:27 +00:00
13 lines
322 B
Lua
13 lines
322 B
Lua
-- Don't include this file, we should manually include it via
|
|
-- require("harpoon.dev").reload();
|
|
--
|
|
-- A quick mapping can be setup using something like:
|
|
-- :nmap <leader>rr :lua require("harpoon.dev").reload()<CR>
|
|
local M = {}
|
|
|
|
M.reload = function()
|
|
require("plenary.reload").reload_module("harpoon");
|
|
end
|
|
|
|
return M
|