From: rearman Date: Fri, 8 Dec 2023 19:42:17 +0000 (-0500) Subject: Add abbrev for org meeting X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=6eaa69af6196cfd3b7dae554c3465c253d3ad8bf;p=emacsinit.git Add abbrev for org meeting --- diff --git a/init.org b/init.org index 4199798..62b8d5d 100644 --- a/init.org +++ b/init.org @@ -620,14 +620,24 @@ Workorder properties block "#+FILETAGS: workorder customer city state topics\n") #+END_SRC +Meeting properties block +#+BEGIN_SRC emacs-lisp +(define-skeleton skel-meeting-properties + "Insert the org title and filetags for a meeting" + "" + "#+TITLE: TOPIC Meeting\n" + "#+FILETAGS: meeting customer city state attendees topics\n") +#+END_SRC + Bind the snippets (in the =abbrev-file-name= file) -#+BEGIN_SRC emacs-lisp :tangle ./abbrev_defs +,#+BEGIN_SRC emacs-lisp :tangle ./abbrev_defs ;;-*-coding: utf-8;-*- (define-abbrev-table 'org-mode-abbrev-table '(("selisp" "" skel-org-block-elisp) ("sfac" "" skel-facility-properties) ("sper" "" skel-person-properties) - ("swo" "" skel-workorder-properties))) + ("swo" "" skel-workorder-properties) + ("smet" "" skel-meeting-properties))) #+END_SRC *** Auto-archive