diff options
author | Kyle Meyer <kyle@kyleam.com> | 2022-12-30 18:14:16 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2024-01-22 00:02:53 -0500 |
commit | 68f7291a812d86f04ed38656019467f9a470abd0 (patch) | |
tree | 5415222765f1b27a89d7e5bf70b1c6d0669e9b4b | |
parent | 41c010aece26def1e6053c6198719640f98c1a20 (diff) | |
download | emacs.d-68f7291a812d86f04ed38656019467f9a470abd0.tar.gz |
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.
-rw-r--r-- | lisp/km-denote.el | 40 |
1 files changed, 40 insertions, 0 deletions
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 <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 |