blob: 4582f6caaee13753199edac18c3941ccb12a235e (
plain) (
blame)
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
|
;;; my-org-remark.el -- customization to org-remark -*- lexical-binding: t -*-
;; Copyright (C) 2025 Free Software Foundation, Inc.
;; Author: Yuchen Pei <id@ypei.org>
;; Package-Requires: ((emacs "29.4"))
;; This file is part of dotted.
;; dotted is free software: you can redistribute it and/or modify it under
;; the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; dotted 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 Affero General
;; Public License for more details.
;; You should have received a copy of the GNU Affero General Public
;; License along with dotted. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; customization to org-remark.
;;; Code:
;;; override `org-remark-highlight-add-or-update-highlight-headline'
(defun my-org-remark-highlight-add-or-update-highlight-headline (highlight source-buf notes-buf)
"Add a new HIGHLIGHT headlne to the NOTES-BUF or update it.
Return notes-props as a property list.
HIGHLIGHT is an overlay from the SOURCE-BUF.
Assume the current buffer is NOTES-BUF and point is placed on the
beginning of source-headline, which should be one level up."
;; Add org-remark-link with updated line-num as a property
(let (title beg end props id text filename link orgid org-remark-type other-props)
(with-current-buffer source-buf
(setq title (org-remark-highlight-get-title)
beg (overlay-start highlight)
end (overlay-end highlight)
props (overlay-properties highlight)
id (plist-get props 'org-remark-id)
org-remark-type (overlay-get highlight 'org-remark-type)
text (org-with-wide-buffer
(org-remark-highlight-headline-text highlight org-remark-type))
filename (org-remark-source-get-file-name
(org-remark-source-find-file-name))
link (run-hook-with-args-until-success
'org-remark-highlight-link-to-source-functions filename beg)
orgid (org-remark-highlight-get-org-id beg)
other-props (org-remark-highlight-collect-other-props highlight))
;; TODO ugly to add the beg end after setq above
(plist-put props org-remark-prop-source-beg (number-to-string beg))
(plist-put props org-remark-prop-source-end (number-to-string end))
(when link (plist-put props "org-remark-link" link))
(when other-props (setq props (append props other-props))))
;;; Make it explicit that we are now in the notes-buf, though it is
;;; functionally redundant.
(with-current-buffer notes-buf
(let ((highlight-headline (org-find-property org-remark-prop-id id))
;; Assume point is at the beginning of the parent headline
(level (1+ (org-current-level))))
(if highlight-headline
(progn
(goto-char highlight-headline)
;; Update the existing headline and position properties
;; Don't update the headline text when it already exists.
;; Let the user decide how to manage the headlines
;; (org-edit-headline text)
(org-remark-notes-set-properties props))
;; No headline with the marginal notes ID property. Create a new one
;; at the end of the file's entry
(org-narrow-to-subtree)
(goto-char (point-max))
;; Ensure to be in the beginning of line to add a new headline
(when (eolp) (open-line 1) (forward-line 1) (beginning-of-line))
;; Create a headline
;; Add a properties
(insert (concat (insert-char (string-to-char "*") level)
" " (my-elide-text text fill-column) "\n"))
;; org-remark-original-text should be added only when this
;; headline is created. No update afterwards
(plist-put props "org-remark-original-text" text)
(org-remark-notes-set-properties props)
(when (and orgid org-remark-use-org-id)
(insert (concat "[[id:" orgid "]" "[" title "]]"))))
(list :body (org-remark-notes-get-body)
:original-text text)))))
(defun my-org-remark-open-or-create ()
(interactive)
(if mark-active
(call-interactively 'org-remark-mark)
(call-interactively 'org-remark-open)))
(provide 'my-org-remark)
;;; my-org-remark.el ends here
|