From 6eaa69af6196cfd3b7dae554c3465c253d3ad8bf Mon Sep 17 00:00:00 2001 From: rearman Date: Fri, 8 Dec 2023 14:42:17 -0500 Subject: [PATCH] Add abbrev for org meeting --- init.org | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) 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 -- 2.39.5