-
Notifications
You must be signed in to change notification settings - Fork 1
/
org-linenote.el
678 lines (574 loc) · 25.3 KB
/
org-linenote.el
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
;;; org-linenote.el --- A package inspired by VSCode Linenote -*- lexical-binding: t; -*-
;;
;; Copyright (C) 2024
;;
;; Author: Jason Kim <sukbeom.kim@gmail.com>
;; Maintainer: Jason Kim <sukbeom.kim@gmail.com>
;; Created: February 18, 2024
;; Modified: April 10, 2024
;; Version: 1.0.1
;; Keywords: tools, note, org
;; Homepage: https://github.com/seokbeomKim/org-linenote
;; Package-Requires: ((emacs "29.1") (projectile "2.8.0") (vertico "1.7") (eldoc "1.11") (lsp-mode "9.0.0") (fringe-helper "1.0.1"))
;; This file is not part of GNU Emacs.
;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 3, or (at your option)
;; any later version.
;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this file. If not, see <https://www.gnu.org/licenses/>.
;;; Setup:
;; (require 'org-linenote)
;;; Commentary:
;; This file provides a source for linenote that manages notes based on the line
;; number in a buffer. The package provides some interactive functions:
;; - org-linenote-move-forward
;; - org-linenote-move-backward
;; - org-linenote-add-annotate
;; - org-linenote-edit-annotate (alias to org-linenote-add-annotate)
;; - org-linenote-remove-annotate
;; - org-linenote-browse
;; - org-linenote-find-root-dir
;; - org-linenote-find-note-dir
;; - org-linenote-auto-open
;; All notes are stored at $PROJECT_ROOT/.linenote directory.
;;; Code:
(require 'projectile)
(require 'vertico)
(require 'subr-x)
(require 'filenotify)
(require 'lsp-mode)
(require 'eldoc)
(require 'fringe-helper)
(defcustom org-linenote-default-extension ".org"
"Configure the default note extension.
If you set this to `.md', then it supports compability with
vscode's linenote."
:type 'string
:group 'org-linenote)
(defcustom org-linenote-use-eldoc t
"Enable Eldoc to display the note.
When enabled, the note appears before strings from LSP. Set this to nil
to disable eldoc."
:type 'boolean
:group 'org-linenote)
(defcustom org-linenote-use-highlight t
"Enable highlighting for notes.
If non-nil, the line with the note will be highlighted. Set to nil not
to disable this feature."
:type 'boolean
:group 'org-linenote)
(defcustom org-linenote-use-fringe t
"Enable the fringe to display the notes.
If non-nil, a fringe bitmap indicating notes will appear in the buffer.
Set to nil to disable the fringe."
:type 'boolean
:group 'org-linenote)
(defcustom org-linenote-fringe-side 'left-fringe
"Set the fringe position.
Either \='left-fringe or \='right-fringe is available."
:type 'symbol
:group 'org-linenote)
(defface org-linenote-highlight-style '((t :background "medium turquoise" :underline nil))
"Highlight style for the notes.")
(defface org-linenote-fringe-face '((t :foreground "#aaaaee" :weight bold))
"Fringe color for the notes.")
(defvar org-linenote--in-browse nil
"A flag of browse function.")
(defvar org-linenote--prev-window -1
"Temporary value to store previously focused window.")
(defvar org-linenote--buffers nil
"The target buffer to ensure line tracking.")
(eval-and-compile
(defcustom org-linenote-fringe-bitmap
'("XX......"
"XX......"
"XX..XX.."
"XX..XX.."
"XX..XX.."
"XX..XX.."
"XX......"
"XX......")
"Define a fringe bitmap to indicate notes."
:type '(repeat string)
:group 'org-linenote))
(defvar-local org-linenote--overlays nil
"Overlays in a local buffer.")
(defvar-local org-linenote--fwatch-id nil
"File watcher id for org-linenote.")
(defvar-local org-linenote--follow-cursor nil
"A flag indicating whether the org-linenote feature should follow \
the cursor.")
(defvar-local org-linenote-mode nil
"Org-linenote mode flag.")
(defvar-local org-linenote--fringes nil
"A list of fringes.")
(defconst org-linenote--tags-file "tags")
(defvar-local org-linenote--tags-hashmap nil
"A hash table for tags.")
(defun org-linenote--lines-to-highlight (filename)
"Get beginning/end line number to highlight from `FILENAME'."
(let* ((basename filename)
(matched (string-match "\\`.*#L\\([0-9]+\\)\\(-L\\)?\\([0-9]+\\)?.*\\'" basename)))
(if matched
(let ((line-beginning (string-to-number (match-string 1 basename)))
(line-end (string-to-number (or (match-string 3 basename) (match-string 1 basename)))))
`(,line-beginning ,(+ 1 line-end)))
(let ((line (string-to-number (match-string 1 basename))))
`(,line ,(+ 1 line))))))
(defun org-linenote--highlight (filename &optional undo)
"Highlight the line specified in FILENAME.
if `UNDO' is t, then unhighlight regions related to `FILENAME'."
(let* ((lines (org-linenote--lines-to-highlight filename))
(min-line (- (car lines) 1))
(max-line (- (car (cdr lines)) 1))
(diff-line (- max-line min-line)))
(goto-char (point-min))
(forward-line min-line)
(mapc (lambda (v) (delete-overlay v))
(overlays-in (line-beginning-position) (line-end-position)))
(when org-linenote-use-fringe
(fringe-helper-define 'org-linenote--fringe-bitmap '(center)
(mapconcat #'identity org-linenote-fringe-bitmap "\n"))
(if (null undo)
(push (fringe-helper-insert 'org-linenote--fringe-bitmap
(point)
org-linenote-fringe-side
'org-linenote-fringe-face)
org-linenote--fringes)))
(when org-linenote-use-highlight
(beginning-of-line)
(set-mark (line-beginning-position))
(forward-line diff-line)
(org-linenote--remove-overlays-at (region-beginning))
(if (null undo)
(let ((ov (make-overlay (region-beginning) (- (region-end) 1))))
(overlay-put ov 'face 'org-linenote-highlight-style)
(if (overlay-buffer ov)
(push ov org-linenote--overlays))))
(forward-line -1)
(deactivate-mark)
(goto-char (point-min))
(forward-line min-line))))
(defun org-linenote-mark-notes ()
"Highlight lines with annotated notes."
(let* ((current-line (line-number-at-pos))
(note-relpath (org-linenote--get-relpath))
(note-rootdir (org-linenote--get-note-rootdir))
(list-notes (directory-files (expand-file-name (or (file-name-directory note-relpath) "")
note-rootdir)
nil (file-name-base note-relpath))))
(mapc #'org-linenote--highlight list-notes)
(goto-char (point-min))
(forward-line (1- current-line))))
(defun org-linenote--get-relpath ()
"Get the relative path of the current file."
(if (projectile-project-root)
(string-remove-prefix (projectile-project-root) (buffer-file-name))
(file-name-nondirectory (buffer-file-name))))
(defun org-linenote--validate ()
"Validate the current working directory."
(unless org-linenote-mode
(error "Please enable org-linenote mode"))
(if-let ((project-root (projectile-project-root)))
(let* ((note-dir (org-linenote--get-note-rootdir))
(note-path (expand-file-name
(or (file-name-directory (org-linenote--get-relpath)) "")
note-dir)))
(make-directory note-dir t)
(make-directory note-path t)
t)
(error "The working directory is not a git repo")))
(defun org-linenote--get-note-rootdir ()
"Get the root directory of the note based on projectile.
If not available, then return empty string."
(if-let ((project-root (projectile-project-root)))
(let ((note-dir (expand-file-name ".linenote" project-root)))
(unless (file-exists-p note-dir)
(make-directory note-dir t))
note-dir)
""))
(defalias 'org-linenote-edit-annotate #'org-linenote-add-annotate
"This is an alias to `org-linenote-add-annotate'.")
(defun org-linenote--get-linenum-string ()
"Get the linenum string for filename."
(if (use-region-p)
(format "#L%S-L%S"
(line-number-at-pos (use-region-beginning))
(line-number-at-pos (- (use-region-end) 1)))
(format "#L%S" (line-number-at-pos))))
(defun org-linenote--get-line-range-by-fname (filename)
"Extracts line range from filename using regex.
`FILENAME' must be passed by argument."
(with-temp-buffer
(insert filename)
(goto-char (point-min))
(if (re-search-forward ".*#L\\([0-9]+\\)\\(-L\\([0-9]+\\)\\)?\\(.*\\)?" nil t)
(let ((min (string-to-number (match-string 1)))
(max (if (match-beginning 3)
(string-to-number (match-string 3))
nil)))
(cons min max)))))
(defun org-linenote--get-note-linum-by-direction (line is-forward)
"Check if there is a note within the `LINE'.
If `IS-FORWARD' is t, then find the next note. Otherwise, find
the previous note."
(let ((res
(cond (is-forward (line-number-at-pos (point-max)))
(t 0)))
(found nil))
(dolist (file (org-linenote--directory-files))
(let* ((range (org-linenote--get-line-range-by-fname file))
(min (car range))
(f (if is-forward #'< #'>)))
(if (and (funcall f line min)
(funcall f min res))
(progn
(setq found t)
(setq res min)))))
(if found res)))
(defun org-linenote--move-forward (is-forward)
"Move to the next note.
If `IS-FORWARD' is nil, then move to the previous note."
(let* ((current-line (line-number-at-pos))
(next-line (org-linenote--get-note-linum-by-direction
current-line
is-forward))
(f (if is-forward #'> #'<)))
(if (and next-line
(funcall f next-line current-line))
(forward-line (- next-line current-line))
(message "No more notes"))))
(defun org-linenote-move-forward ()
"Move to the next note."
(interactive)
(org-linenote--validate)
(org-linenote--move-forward t))
(defun org-linenote-move-backward ()
"Move to the previous note."
(interactive)
(org-linenote--validate)
(org-linenote--move-forward nil))
(defun org-linenote--check-line-range (line)
"Check if there is a note within the `LINE'."
(let ((res nil))
(dolist (file (org-linenote--directory-files))
(let* ((range (org-linenote--get-line-range-by-fname file))
(min (car range))
(max (cdr range)))
(if (and max
(<= min line)
(<= line max))
(setq res file)
(if (and (null max)
(= min line))
(setq res file)))))
res))
(defun org-linenote--check-note-exist ()
"Check whether the note for current line exists.
If the note exists, return the absolute path, otherwise return nil."
(org-linenote--check-line-range (line-number-at-pos)))
(defun org-linenote--get-candidate-note-path ()
"Get the note's absolute path for corresponding line."
(or (org-linenote--check-note-exist)
(expand-file-name (concat (org-linenote--get-relpath)
(org-linenote--get-linenum-string)
org-linenote-default-extension)
(org-linenote--get-note-rootdir))))
(defun org-linenote-add-annotate (&optional keep-focus)
"Annotate on the line.
`KEEP-FOCUS': by default, the cursor will be into newly opened
buffer. If you set this argument to t, the function will not
change the focus after the line highlight."
(interactive)
(org-linenote--validate)
(let ((note-path (org-linenote--get-candidate-note-path))
(working-buf (selected-window))
(current-line (line-number-at-pos)))
(pop-to-buffer (find-file-noselect note-path) 'reusable-frames)
(save-buffer)
(select-window working-buf)
(goto-char (point-min))
(forward-line current-line)
(org-linenote-mark-notes)
(forward-line -1)
(if (not keep-focus)
(pop-to-buffer (find-file-noselect note-path) 'reusable-frames))))
(defun org-linenote-remove-annotate ()
"Remove the annotation on the line."
(interactive)
(org-linenote--validate)
(let ((note-path (org-linenote--get-candidate-note-path)))
(if (not (file-exists-p note-path))
(error "No notes to remove from here")
(condition-case _
(progn
(pop-to-buffer (find-file-noselect note-path) 'reusable-frames)
(let ((do-remove (yes-or-no-p (format "Remove %S?" note-path))))
(delete-window)
(when do-remove
(delete-file note-path)
(org-linenote--highlight (file-name-base note-path) t))))
(quit (delete-window))))))
(defun org-linenote--directory-files ()
"Do `directory-files' to find notes (except for files with names ending with ~)."
(directory-files (expand-file-name (or (file-name-directory (org-linenote--get-relpath)) "")
(org-linenote--get-note-rootdir))
'full (concat (file-name-base (org-linenote--get-relpath)) ".[^.].*[^~]$")))
(defun org-linenote--get-note-list ()
"Get the list of note in the current buffer."
(setq org-linenote--in-browse t)
(setq org-linenote--prev-window (selected-window))
(org-linenote--directory-files))
(defun org-linenote--post-command-hook ()
"Post-command-hook implementation."
(when org-linenote--in-browse
(let ((focused-item (nth (symbol-value 'vertico--index) (symbol-value 'vertico--candidates))))
(when (length> focused-item 0)
(select-window org-linenote--prev-window)
(org-linenote--highlight focused-item)
(if (active-minibuffer-window)
(select-window (active-minibuffer-window)))))))
(defun org-linenote--overlayed-by (ov)
"Check `OV' instance is actually overlayed by this package."
(member ov org-linenote--overlays))
(defun org-linenote--remove-overlays-at (pos)
"Remove overlays at `POS' by checking the `org-linenote--overlays'."
(mapc (lambda (ov)
(if (org-linenote--overlayed-by ov)
(progn
(delete-overlay ov)
(delete ov org-linenote--overlays)))) (overlays-at pos)))
(defun org-linenote--minibuf-setup-hook ()
"A function added to minibuf-setup-hook used for org-linenote."
(add-hook 'post-command-hook #'org-linenote--post-command-hook))
(defun org-linenote--minibuf-exit-hook ()
"A function added to minibuf-exit-hook used for org-linenote."
(setq org-linenote--in-browse nil)
(setq org-linenote--prev-window -1)
(org-linenote--remove-overlays-at (line-beginning-position))
(remove-hook 'post-command-hook #'org-linenote--post-command-hook))
(defun org-linenote--is-backup-file (file-path)
"Check the file located at `FILE-PATH is temporary file."
(string= (substring (file-name-base file-path) 0 2) ".#"))
(defun org-linenote--file-changed (event)
"A function to handle file watch `EVENT'."
(let* ((fs-id (nth 0 event))
(etype (nth 1 event))
(fpath (nth 2 event))
(buffer-of-event (cdr (assoc fs-id org-linenote--buffers))))
(when (and (string-match-p
(regexp-quote (file-name-nondirectory
(buffer-file-name buffer-of-event)))
(file-name-base fpath))
(not (org-linenote--is-backup-file fpath)))
(with-current-buffer buffer-of-event
(cond
((string= etype "deleted")
(org-linenote--highlight fpath t))
((string= etype "created")
(org-linenote--highlight fpath)))))))
(defun org-linenote--dealloc-fswatch ()
"Remove out the file watchers and corresponding list."
(file-notify-rm-watch org-linenote--fwatch-id)
(setq-local org-linenote--overlays nil)
(setq org-linenote--buffers
(delete (assoc org-linenote--fwatch-id org-linenote--buffers) org-linenote--buffers)))
(defun org-linenote--buffer-killed ()
"A hook function for `kill-buffer-hook'."
(org-linenote--dealloc-fswatch))
(defun org-linenote--remove-all-overlays ()
"Remove all overlays in the current buffer."
(mapc #'delete-overlay org-linenote--overlays))
(defun org-linenote--remove-all-fringes ()
"Remove all fringes in the current buffer."
(mapc #'fringe-helper-remove org-linenote--fringes))
(defun org-linenote--enable ()
"A function to enable `org-linenote-mode'."
(org-linenote--validate)
(add-hook 'minibuffer-setup-hook #'org-linenote--minibuf-setup-hook)
(add-hook 'minibuffer-exit-hook #'org-linenote--minibuf-exit-hook)
(add-hook 'kill-buffer-hook #'org-linenote--buffer-killed :local)
(add-hook 'before-revert-hook #'org-linenote--remove-all-overlays :local)
(add-hook 'before-revert-hook #'org-linenote--remove-all-fringes :local)
(let* ((watch-directory (expand-file-name (or (file-name-directory (org-linenote--get-relpath)) "")
(org-linenote--get-note-rootdir)))
(buffer-id (current-buffer))
(watch-id (file-notify-add-watch watch-directory
'(change)
#'org-linenote--file-changed)))
(setq-local org-linenote--fwatch-id watch-id)
(setq-local org-linenote--follow-cursor nil)
(push `(,watch-id . ,buffer-id) org-linenote--buffers))
(org-linenote-mark-notes)
(when org-linenote-use-eldoc
(setq-local eldoc-documentation-functions
(cons 'org-linenote--eldoc-show-buffer eldoc-documentation-functions))))
(defun org-linenote--disable ()
"A function to disable `org-linenote-mode'."
(setq-local eldoc-documentation-functions
(delete 'org-linenote--eldoc-show-buffer eldoc-documentation-functions))
(remove-hook 'minibuffer-setup-hook #'org-linenote--minibuf-setup-hook)
(remove-hook 'minibuffer-exit-hook #'org-linenote--minibuf-exit-hook)
(remove-hook 'kill-buffer-hook #'org-linenote--buffer-killed :local)
(remove-hook 'before-revert-hook #'org-linenote--remove-all-overlays :local)
(org-linenote--remove-all-overlays)
(org-linenote--remove-all-fringes)
(org-linenote--auto-open-at-cursor 'false)
(org-linenote--dealloc-fswatch))
(define-minor-mode org-linenote-mode
"Toggle `org-linenote-mode'."
:init-value nil
:global nil
:lighter " Org-Linenote"
(unless (projectile-project-root)
(error "The working directory is not a git repo"))
(if org-linenote-mode (org-linenote--enable) (org-linenote--disable)))
(defun org-linenote-browse ()
"Browse notes for this buffer."
(interactive)
(org-linenote--validate)
(condition-case _
(funcall #'org-linenote--browse)
(quit
(org-linenote--minibuf-exit-hook)
(org-linenote-mark-notes))))
(defun org-linenote-find-root-dir ()
"Open the linenote root directory for the current project."
(interactive)
(org-linenote--validate)
(let ((note-dir (org-linenote--get-note-rootdir)))
(if (file-exists-p note-dir)
(find-file note-dir)
(error "No notes found"))))
(defun org-linenote-find-note-dir ()
"Open the note directory for the current file."
(interactive)
(org-linenote--validate)
(let ((note-dir (expand-file-name (or (file-name-directory (org-linenote--get-relpath)) "")
(org-linenote--get-note-rootdir))))
(if (file-exists-p note-dir)
(find-file note-dir)
(error "No notes found"))))
(defun org-linenote--follow-func ()
"A hook function for `note-follow' feature."
(if (org-linenote--check-note-exist)
(org-linenote-edit-annotate t)))
(defun org-linenote--auto-open-at-cursor (&optional toggle)
"Toggle org-linenote follow mode.
This let you open the note automatically. if `TOGGLE' is \=false,
disable note-follow. if `TOGGLE' is \=true, enable note-follow."
(let ((set-to (cond ((eq toggle 'true) t)
((eq toggle 'false) nil)
((null toggle) (not org-linenote--follow-cursor)))))
(setq-local org-linenote--follow-cursor set-to)
(if org-linenote--follow-cursor
(add-hook 'post-command-hook #'org-linenote--follow-func nil t)
(remove-hook 'post-command-hook #'org-linenote--follow-func t))))
(defun org-linenote-auto-open ()
"Toggle org-linenote follow mode."
(interactive)
(org-linenote--auto-open-at-cursor)
(message "org-linenote note-follow %s"
(if org-linenote--follow-cursor "enabled" "disabled")))
(defun org-linenote--obtain-tag-string-by-key (key)
"Get a tag string by the `KEY' from the hash table."
(let ((result ""))
(mapc (lambda (v)
(setq result (concat result (format "#%s " v))))
(gethash (format "#L%S" (car key)) org-linenote--tags-hashmap))
result))
(defun org-linenote--add-tags-to-notelist (notes)
"Add tags to the list of `NOTES' for the current buffer."
(mapcar (lambda (note)
(format "%-100s%s" note
(org-linenote--obtain-tag-string-by-key
(org-linenote--get-line-range-by-fname note)))) notes))
(defun org-linenote--truncate-tags-or-spaces-from-string (str)
"A function to truncate tags or spaces from `STR'."
(car (string-split str " ")))
(defun org-linenote--browse ()
"Browse notes in the current buffer.
Argument CHOICE user's selection."
(let* ((reldir (expand-file-name (concat (file-name-directory (org-linenote--get-relpath)) "")
(org-linenote--get-note-rootdir))))
(org-linenote--load-tags reldir)
(when (null org-linenote--tags-hashmap)
(setq-local org-linenote--tags-hashmap (make-hash-table :test 'equal)))
(let ((choice (org-linenote--truncate-tags-or-spaces-from-string
(completing-read "Choose the note: "
(org-linenote--add-tags-to-notelist (org-linenote--get-note-list)) nil t))))
(org-linenote-mark-notes)
(pop-to-buffer (find-file-noselect choice 'reusable-frames)))))
(defun org-linenote--eldoc-show-buffer (&optional args)
"Show the first line of a candidate note in the mini-buffer.
Optional argument `ARGS' Return the string for eldoc. Since we need
only note buffer, there is no usage of `ARGS' at all."
(ignore args)
(let ((note-path (org-linenote--get-candidate-note-path)))
(when (and note-path (file-exists-p note-path))
(with-temp-buffer
(insert-file-contents note-path)
(let* ((file-buffer (buffer-string))
(file-ext (file-name-extension note-path))
(language '(("org" . "org")
("md" . "markdown"))))
(condition-case e
(lsp--render-string file-buffer (cdr (assoc file-ext language)))
(error (message "handle error: %s" e))))))))
(defun org-linenote--load-tags (directory)
"Load tags saved in the note `DIRECTORY'."
(setq-local org-linenote--tags-hashmap
(let ((tag-file
(expand-file-name org-linenote--tags-file directory)))
(when (file-exists-p tag-file)
;; load the file
(with-temp-buffer
(insert-file-contents tag-file)
(read (current-buffer)))))))
(defun org-linenote--save-tags (directory)
"Save tags to the note `DIRECTORY'."
(let ((tag-file (expand-file-name org-linenote--tags-file directory))
(hash-str (prin1-to-string org-linenote--tags-hashmap)))
(with-temp-file tag-file
(insert hash-str))))
(defun org-linenote-add-tags ()
"Add tags corresponding to the current line."
(interactive)
(if (null (org-linenote--check-note-exist))
(message "Note does not exist on the current line.")
(let ((reldir (expand-file-name
(concat (file-name-directory (org-linenote--get-relpath)) "")
(org-linenote--get-note-rootdir))))
(org-linenote--load-tags reldir)
(when (null org-linenote--tags-hashmap)
(setq-local org-linenote--tags-hashmap (make-hash-table :test 'equal)))
(let* ((tagkey (org-linenote--get-linenum-string))
(prev-val (gethash tagkey org-linenote--tags-hashmap))
(tagstr (completing-read-multiple "Input tags (separated by , ): " prev-val)))
(remhash tagkey org-linenote--tags-hashmap)
(if prev-val
(puthash tagkey (append tagstr prev-val) org-linenote--tags-hashmap)
(puthash tagkey tagstr org-linenote--tags-hashmap))
(org-linenote--save-tags reldir)))))
(defun org-linenote-remove-tags ()
"Remove tags corresponding to the current line."
(interactive)
(let ((reldir (expand-file-name (concat (file-name-directory (org-linenote--get-relpath)) "")
(org-linenote--get-note-rootdir))))
(org-linenote--load-tags reldir)
(let* ((tagkey (org-linenote--get-linenum-string))
(prev-val (gethash tagkey org-linenote--tags-hashmap)))
(if (null prev-val)
(message "No tags to remove on the current line.")
(let* ((tagstr (completing-read-multiple "Input tags to remove (separated by , ): " prev-val)))
(mapc (lambda (v) (setq prev-val (delete v prev-val))) tagstr)
(remhash tagkey org-linenote--tags-hashmap)
(puthash tagkey prev-val org-linenote--tags-hashmap)
(org-linenote--save-tags reldir))))))
(provide 'org-linenote)
;;; org-linenote.el ends here