From 68f7291a812d86f04ed38656019467f9a470abd0 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 30 Dec 2022 18:14:16 -0500 Subject: denote: Add custom denote-add-frontmatter variant I often have a file that already has a title and keywords and just want to insert matching front matter. denote-add-frontmatter isn't well suited for this case because it prompts for the title and keywords. --- lisp/km-denote.el | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lisp/km-denote.el diff --git a/lisp/km-denote.el b/lisp/km-denote.el new file mode 100644 index 0000000..1a9e622 --- /dev/null +++ b/lisp/km-denote.el @@ -0,0 +1,40 @@ +;;; km-denote.el --- Denote-related extensions -*- lexical-binding: t; -*- + +;; Copyright Kyle Meyer + +;; Author: Kyle Meyer +;; 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 . + +;;; 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 -- cgit v1.2.3