summaryrefslogtreecommitdiff
path: root/lisp/km-denote.el
blob: 1a9e622faf8692e1a45c46fe20bcadcbc7666b6e (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
;;; 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))))

(provide 'km-denote)
;;; km-denote.el ends here