blob: 24e98d2393ee78ebbb91b3ca33be575fb98c154f (
plain)
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
|
;;; km-denote.el --- Denote-related extensions -*- lexical-binding: t; -*-
;; Copyright Kyle Meyer <kyle@kyleam.com>
;; Author: Kyle Meyer <kyle@kyleam.com>
;; URL: https://git.kyleam.com/emacs.d
;; This program 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 of the License, or
;; (at your option) any later version.
;; This program 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 program. If not, see <http://www.gnu.org/licenses/>.
;;; Code:
(require 'denote)
;;;###autoload
(defun km/denote-add-frontmatter ()
"Insert front matter into current file.
Unlike an interactive call to `denote-add-front-matter', this
does not prompt for the title and keywords; it just takes them
from the file name."
(interactive)
(let ((fname (or (buffer-file-name)
(user-error "Buffer not visiting file"))))
(denote-add-front-matter
fname
(denote-retrieve-filename-title fname)
(denote-extract-keywords-from-path fname))))
;;;###autoload
(defun km/denote-find-file-at-point ()
"Find the file in `denote-directory' for the denote ID at point.
The file must be tracked in Git."
(interactive)
(let ((id (save-excursion
(let ((case-fold-search nil))
(skip-chars-backward "-a-z0-9_T"))
(if (looking-at denote-id-regexp)
(match-string-no-properties 0)
(user-error "No denote ID at point"))))
(default-directory denote-directory))
(find-file
(car (or (process-lines "git" "ls-files" "--" (concat id "--*"))
(process-lines "git" "ls-files" "--" (concat "**/" id "--*"))
(user-error "No tracked file found for %s" id))))))
(defun km/denote-insert-id (&optional with-prefix)
"Insert ID of tracked file in `denote-directory'.
When WITH-PREFIX is non-nil, prepend \"denote:\" to the inserted
ID."
(interactive "P")
(let* ((default-directory denote-directory)
(id (or (denote-extract-id-from-string
(completing-read
"Note: "
(process-lines "git" "ls-files" "--" "*--*")))
(error "Could not determine ID"))))
(insert (concat (and with-prefix "denote:") id))))
(provide 'km-denote)
;;; km-denote.el ends here
|