updated zk link to be text rather than md link

This commit is contained in:
Solomon Laing 2023-03-10 22:06:43 +10:30
parent fa975be7c5
commit ecf2107cb3

View File

@ -18,7 +18,7 @@ return {
end
for _, note in ipairs(notes) do
-- stylua: ignore
local nline = line:sub(0, pos) .. "[" .. note.title .. "]" .. "(" .. note.path .. ")" .. line:sub(pos + 1)
local nline = line:sub(0, pos) .. note.title .. " - " .. note.path .. line:sub(pos + 1)
vim.api.nvim_set_current_line(nline)
end
end)