]> git.earman.xyz Git - emacsinit.git/commitdiff
Add abbrev for org meeting
authorrearman <rearman@r717.net>
Fri, 8 Dec 2023 19:42:17 +0000 (14:42 -0500)
committerrearman <rearman@r717.net>
Fri, 8 Dec 2023 19:42:17 +0000 (14:42 -0500)
init.org

index 4199798a8c5a1183c5ec4a6ef7c61917b40fa918..62b8d5d12cad5709c2f38068ae9af9a34cbdecee 100644 (file)
--- 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