diff --git a/lua/harpoon/dev.lua b/lua/harpoon/dev.lua new file mode 100644 index 0000000..192cef2 --- /dev/null +++ b/lua/harpoon/dev.lua @@ -0,0 +1,12 @@ +-- 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 rr :lua require("harpoon.dev").reload() +local M = {} + +M.reload = function() + require("plenary.reload").reload_module("harpoon"); +end + +return M