zettelkasten.nvim/lua/zettelkasten/list.lua

35 lines
1.1 KiB
Lua
Raw Normal View History

local ls = {}
local function isDirectory(ftype)
2020-10-29 18:00:23 +00:00
if ftype == 'directory' then return true end
return false
end
2020-10-29 18:00:23 +00:00
-- TODO transform paths:
-- * to absolute value (e.g. ~ to home, scandir needs absolute)
-- * to ensure / at the end (or no /) gets taken into account
function ls.get_anchors_and_paths(path, recursive, options)
options = options or {}
2020-10-29 18:00:23 +00:00
-- TODO check for duplicates and warn user
local zettel = {}
local anchorreg = '^.*/?([%d][%d][%d][%d][%d][%d][%d][%d][%d][%d])[^/]*%' ..
(options.zettel_extension or '.md') .. '$'
2020-10-29 18:00:23 +00:00
local handle = vim.loop.fs_scandir(path)
while handle do
local name, ftype = vim.loop.fs_scandir_next(handle)
if not name then break end
2020-10-29 18:00:23 +00:00
if isDirectory(ftype) and recursive then
local subdir = ls.get_anchors_and_paths(path .. "/" .. name, true)
for k, v in pairs(subdir) do zettel[tostring(k)] = v end
end
2020-10-29 18:00:23 +00:00
local anchor = string.match(name, anchorreg)
if anchor then zettel[tostring(anchor)] = name end
end
2020-10-29 18:00:23 +00:00
return zettel
end
return ls