1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
|
if vim.env.NOTES_DIR == nil then
vim.notify("NOTES_DIR is not set", vim.log.levels.ERROR)
return
end
vim.g.notes_dir = vim.env.NOTES_DIR:sub(-1) == "/" and vim.env.NOTES_DIR:sub(1, -2) or vim.env.NOTES_DIR
local notes_dir = vim.g.notes_dir
local tagfile = vim.fs.joinpath(vim.fn.stdpath("state"), "notes-tags")
local function generate_tags()
vim.system({ "ctags", "--languages=Markdown", "--tag-relative=no", "--recurse", "-f", tagfile, notes_dir })
end
-- Completion of all `*.md` note names (relative to the notes dir, extension stripped).
local function note_candidates()
local out = {}
local files = vim.fs.find(function(name)
return name:match("%.md$")
end, { path = notes_dir, type = "file", limit = math.huge })
for _, f in ipairs(files) do
out[#out + 1] = f:sub(#notes_dir + 2):gsub("%.md$", "")
end
return out
end
-- Headings of a note, read from the ctags tagfile so `#` comments inside fenced
-- code blocks aren't mistaken for headings (hashtag `h` / footnote `n` kinds excluded).
local function heading_candidates(note)
local out = {}
local target = notes_dir .. "/" .. note .. ".md"
local fd = io.open(tagfile, "r")
if fd == nil then
return out
end
for line in fd:lines() do
if line:sub(1, 1) ~= "!" then
local name, file, _, kind = line:match('^(.-)\t(.-)\t(.-);"\t(%a)')
if file == target and kind ~= "h" and kind ~= "n" then
out[#out + 1] = name
end
end
end
fd:close()
return out
end
-- 'omnifunc' for wiki-links: inside `[[`, complete note names; after `#`, complete
-- the target note's headings. Wired per notes buffer in the autocmd below.
function _G.dotfiles_wikilink_source(findstart, base)
local line = vim.api.nvim_get_current_line()
local col = vim.api.nvim_win_get_cursor(0)[2]
local before = line:sub(1, col)
-- Locate the innermost still-open `[[` to the left of the cursor.
local open, i = nil, 1
while true do
local s = before:find("%[%[", i)
if s == nil then
break
end
open, i = s, s + 2
end
local inner = open and before:sub(open + 2)
if inner == nil or inner:find("%]") then -- not inside an open `[[ ... ]]`
return findstart == 1 and -3 or {}
end
local hash = inner:find("#")
if findstart == 1 then
-- 0-based byte column where the completed text starts (after `[[` or after `#`).
return hash and (open + 1 + hash) or (open + 1)
end
local candidates = hash and heading_candidates(inner:sub(1, hash - 1)) or note_candidates()
if base ~= "" then
candidates = vim.fn.matchfuzzy(candidates, base)
end
return candidates
end
vim.api.nvim_create_autocmd({ "BufReadPost", "BufNewFile" }, {
desc = "Set up notes buffer (tagfile, wiki-link completion)",
group = vim.g.dotfiles.augroup,
pattern = notes_dir .. "/*",
callback = function()
if not vim.tbl_contains(vim.opt_local.tags:get(), tagfile) then
vim.opt_local.tags:append(tagfile)
end
vim.bo.omnifunc = "v:lua.dotfiles_wikilink_source"
end,
})
vim.api.nvim_create_autocmd("BufWritePost", {
desc = "Regenerate notes ctags",
group = vim.g.dotfiles.augroup,
pattern = notes_dir .. "/*",
callback = generate_tags,
})
generate_tags()
vim.keymap.set("n", "<Leader>nn", function()
require("fzf-lua").tags({ ctags_file = tagfile, cwd = notes_dir })
end, { desc = "Fuzzy-find notes" })
vim.keymap.set("n", "<Leader>nf", function()
require("fzf-lua").files({ cwd = notes_dir })
end, { desc = "Fuzzy-find notes file name" })
vim.keymap.set("n", "<Leader>ng", function()
require("fzf-lua").live_grep({ cwd = notes_dir })
end, { desc = "Fuzzy-find notes content" })
-- A note's path relative to the notes dir, without `.md`, or nil if not a note.
local function note_name(path)
local prefix = vim.fs.normalize(notes_dir) .. "/"
path = vim.fs.normalize(path)
if not vim.startswith(path, prefix) then
return nil
end
return (path:sub(#prefix + 1):gsub("%.md$", ""))
end
-- Rewrite `[[oldname]]` / `[[oldname#heading]]` targets to `newname`, matching the
-- target exactly so `[[oldname_extra]]` is left alone. The gsub replacement is a
-- function, so its return value is used literally (no `%` escaping needed).
-- Returns the new text and the number of links rewritten.
local function rewrite_links(text, oldname, newname)
local count = 0
local out = text:gsub("%[%[(.-)%]%]", function(inner)
local target, rest = inner:match("^([^#]*)(.*)$")
if target == oldname then
count = count + 1
return "[[" .. newname .. rest .. "]]"
end
end)
return out, count
end
-- Apply `rewriter(text) -> new_text, n` to every note, editing loaded buffers in
-- place (preserving unsaved changes) and others on disk. Returns total links and files.
local function update_all_notes(rewriter)
local loaded = {}
for _, b in ipairs(vim.api.nvim_list_bufs()) do
if vim.api.nvim_buf_is_loaded(b) then
loaded[vim.fs.normalize(vim.api.nvim_buf_get_name(b))] = b
end
end
local files = vim.fs.find(function(name)
return name:match("%.md$")
end, { path = notes_dir, type = "file", limit = math.huge })
local link_count, file_count = 0, 0
for _, file in ipairs(files) do
local b = loaded[vim.fs.normalize(file)]
local n = 0
if b then
local was_modified = vim.bo[b].modified
local text = table.concat(vim.api.nvim_buf_get_lines(b, 0, -1, false), "\n")
local new_text
new_text, n = rewriter(text)
if n > 0 then
vim.api.nvim_buf_set_lines(b, 0, -1, false, vim.split(new_text, "\n", { plain = true }))
if not was_modified then -- buffer matched disk; keep it that way
vim.api.nvim_buf_call(b, function()
vim.cmd("silent! write!")
end)
end
end
else
local fd = io.open(file, "r")
if fd then
local content = fd:read("*a")
fd:close()
local new_content
new_content, n = rewriter(content)
if n > 0 then
local wf = io.open(file, "w")
if wf then
wf:write(new_content)
wf:close()
end
end
end
end
if n > 0 then
link_count = link_count + n
file_count = file_count + 1
end
end
return link_count, file_count
end
-- Rename the current note to `new_rel` (relative to the notes dir, `.md` optional)
-- and update every wiki-link pointing to it across all notes.
local function rename_current_note(new_rel)
local buf = vim.api.nvim_get_current_buf()
local oldname = note_name(vim.api.nvim_buf_get_name(buf))
if oldname == nil then
vim.notify("Current buffer is not a note", vim.log.levels.ERROR)
return
end
new_rel = (new_rel or ""):gsub("%.md$", "")
if new_rel == "" then
return
end
local old_path = notes_dir .. "/" .. oldname .. ".md"
local new_path = notes_dir .. "/" .. new_rel .. ".md"
if vim.uv.fs_stat(new_path) then
vim.notify("Target already exists: " .. new_rel, vim.log.levels.ERROR)
return
end
if vim.bo[buf].modified then
vim.cmd.write()
end
-- Move the file on disk, then repoint the current buffer at it.
vim.fn.mkdir(vim.fs.dirname(new_path), "p")
local ok, err = vim.uv.fs_rename(old_path, new_path)
if not ok then
vim.notify("Rename failed: " .. tostring(err), vim.log.levels.ERROR)
return
end
vim.api.nvim_buf_set_name(buf, new_path)
vim.cmd("keepalt write!")
-- Renaming a buffer can leave a stale empty buffer under the old name.
for _, b in ipairs(vim.api.nvim_list_bufs()) do
if b ~= buf and vim.api.nvim_buf_get_name(b) == old_path then
pcall(vim.api.nvim_buf_delete, b, { force = true })
end
end
local link_count, file_count = update_all_notes(function(text)
return rewrite_links(text, oldname, new_rel)
end)
generate_tags()
vim.notify(string.format("Renamed to %s — updated %d link(s) in %d file(s)", new_rel, link_count, file_count))
end
vim.api.nvim_create_user_command("NotesRename", function(opts)
if opts.args ~= "" then
rename_current_note(opts.args)
else
vim.ui.input({ prompt = "Rename note to: ", default = note_name(vim.api.nvim_buf_get_name(0)) }, function(input)
if input and input ~= "" then
rename_current_note(input)
end
end)
end
end, { nargs = "?", desc = "Rename current note and update wiki-links" })
-- Rewrite `[[note#oldhead]]` heading anchors to `newhead` (only for this note's
-- own headings; links to other notes' identically-named headings are untouched).
local function rewrite_heading_links(text, note, oldhead, newhead)
local count = 0
local out = text:gsub("%[%[(.-)%]%]", function(inner)
local target, head = inner:match("^([^#]*)#(.*)$")
if target == note and head == oldhead then
count = count + 1
return "[[" .. target .. "#" .. newhead .. "]]"
end
end)
return out, count
end
-- The markdown heading at or above the cursor as `{ row, level, text }` (row is
-- 1-based), or nil. Returning one value keeps the fields narrowed together.
local function heading_at_cursor(buf)
local row = vim.api.nvim_win_get_cursor(0)[1]
local lines = vim.api.nvim_buf_get_lines(buf, 0, row, false)
for r = #lines, 1, -1 do
local hashes, text = lines[r]:match("^(#+)%s+(.-)%s*$")
if hashes then
return { row = r, level = #hashes, text = text }
end
end
return nil
end
-- Rename the heading at the cursor to `new_head` and update wiki-links to it.
local function rename_current_section(new_head)
local buf = vim.api.nvim_get_current_buf()
local note = note_name(vim.api.nvim_buf_get_name(buf))
if note == nil then
vim.notify("Current buffer is not a note", vim.log.levels.ERROR)
return
end
local heading = heading_at_cursor(buf)
if heading == nil then
vim.notify("No heading at or above the cursor", vim.log.levels.ERROR)
return
end
new_head = vim.trim(new_head or "")
if new_head == "" or new_head == heading.text then
return
end
-- Rewrite the heading line itself, then persist before touching links.
local line = string.rep("#", heading.level) .. " " .. new_head
vim.api.nvim_buf_set_lines(buf, heading.row - 1, heading.row, false, { line })
vim.cmd("write")
local link_count, file_count = update_all_notes(function(text)
return rewrite_heading_links(text, note, heading.text, new_head)
end)
generate_tags()
vim.notify(
string.format("Renamed section to %s — updated %d link(s) in %d file(s)", new_head, link_count, file_count)
)
end
vim.api.nvim_create_user_command("NotesRenameSection", function(opts)
if opts.args ~= "" then
rename_current_section(opts.args)
else
local heading = heading_at_cursor(vim.api.nvim_get_current_buf())
vim.ui.input({ prompt = "Rename section to: ", default = heading and heading.text }, function(input)
if input and input ~= "" then
rename_current_section(input)
end
end)
end
end, { nargs = "*", desc = "Rename the heading at the cursor and update wiki-links" })
|