chore: formatting and lint

This commit is contained in:
mpaulson 2023-11-30 20:43:29 -07:00
parent 7a356bfb12
commit b8d690f098
2 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@ local function normalize_path(buf_name, root)
return Path:new(buf_name):make_relative(root) return Path:new(buf_name):make_relative(root)
end end
local M = {} local M = {}
local DEFAULT_LIST = "__harpoon_files" local DEFAULT_LIST = "__harpoon_files"
M.DEFAULT_LIST = DEFAULT_LIST M.DEFAULT_LIST = DEFAULT_LIST

View File

@ -125,7 +125,7 @@ end
function Harpoon:info() function Harpoon:info()
return { return {
paths = Data.info(), paths = Data.info(),
default_list_name = DEFAULT_LIST, default_list_name = Config.DEFAULT_LIST,
} }
end end