mirror of
https://github.com/ThePrimeagen/harpoon.git
synced 2025-07-14 10:00:29 +00:00
100 lines
2.1 KiB
Lua
100 lines
2.1 KiB
Lua
local Data = require("harpoon2.data")
|
|
local Config = require("harpoon2.config")
|
|
local List = require("harpoon2.list")
|
|
|
|
-- setup
|
|
-- read from a config file
|
|
--
|
|
|
|
-- TODO: rename lists into something better...
|
|
|
|
local DEFAULT_LIST = "__harpoon_files"
|
|
|
|
---@class Harpoon
|
|
---@field config HarpoonConfig
|
|
---@field data HarpoonData
|
|
---@field lists {[string]: {[string]: HarpoonList}}
|
|
local Harpoon = {}
|
|
|
|
Harpoon.__index = Harpoon
|
|
|
|
---@return Harpoon
|
|
function Harpoon:new()
|
|
local config = Config.get_default_config()
|
|
|
|
return setmetatable({
|
|
config = config,
|
|
data = Data.Data:new(),
|
|
lists = {},
|
|
}, self)
|
|
end
|
|
|
|
---@param partial_config HarpoonPartialConfig
|
|
---@return Harpoon
|
|
function Harpoon:setup(partial_config)
|
|
self.config = Config.merge_config(partial_config, self.config)
|
|
return self
|
|
end
|
|
|
|
---@param name string?
|
|
---@return HarpoonList
|
|
function Harpoon:list(name)
|
|
name = name or DEFAULT_LIST
|
|
|
|
local key = self.config.settings.key()
|
|
local lists = self.lists[key]
|
|
|
|
if not lists then
|
|
lists = {}
|
|
self.lists[key] = lists
|
|
end
|
|
|
|
local existing_list = lists[name]
|
|
|
|
if existing_list then
|
|
return existing_list
|
|
end
|
|
|
|
local data = self.data:data(key, name)
|
|
local list_config = Config.get_config(self.config, name)
|
|
|
|
local list = List.decode(list_config, name, data)
|
|
lists[name] = list
|
|
|
|
return list
|
|
end
|
|
|
|
function Harpoon:sync()
|
|
local key = self.config.settings.key()
|
|
local seen = self.data.seen[key]
|
|
local lists = self.lists[key]
|
|
for list_name, _ in pairs(seen) do
|
|
local encoded = lists[list_name]:encode()
|
|
self.data:update(key, list_name, encoded)
|
|
end
|
|
self.data:sync()
|
|
end
|
|
|
|
function Harpoon:setup_hooks()
|
|
-- setup the autocommands
|
|
-- vim exits sync data
|
|
-- buf exit setup the cursor location
|
|
error("I haven't implemented this yet")
|
|
end
|
|
|
|
function Harpoon:info()
|
|
return {
|
|
paths = Data.info(),
|
|
default_list_name = DEFAULT_LIST,
|
|
}
|
|
end
|
|
|
|
--- PLEASE DONT USE THIS OR YOU WILL BE FIRED
|
|
function Harpoon:dump()
|
|
return self.data._data
|
|
end
|
|
|
|
return Harpoon:new()
|
|
|
|
|