]> git.earman.xyz Git - emacsinit.git/commitdiff
Update and organize snippets
authorrearman <rearman@r717.net>
Fri, 3 May 2024 21:08:05 +0000 (17:08 -0400)
committerrearman <rearman@r717.net>
Fri, 3 May 2024 21:08:05 +0000 (17:08 -0400)
init.org

index 0c569edfe0c0fb2d7f4378cf632d53a27c8e0822..c64ac30460eeb9e638f355bfdf82e1112a630971 100644 (file)
--- a/init.org
+++ b/init.org
@@ -587,7 +587,7 @@ Start up =abbrev-mode= for org
 #+END_SRC
 
 **** Skeletons
-=Emacs Lisp= source Block
+***** =Emacs Lisp= source Block
 #+BEGIN_SRC emacs-lisp
 (define-skeleton skel-org-block-elisp
   "Insert an org emacs lisp block"
@@ -597,7 +597,7 @@ Start up =abbrev-mode= for org
   "#+END_SRC\n")
 #+END_SRC
 
-Facility properties block
+***** Facility properties block
 #+BEGIN_SRC emacs-lisp
 (define-skeleton skel-facility-properties
   "Insert the org title and filetags for a new facility."
@@ -611,27 +611,30 @@ Facility properties block
   "* Commissioning [/]\n")
 #+END_SRC
 
-Person properties block
+***** Person properties block
 #+BEGIN_SRC emacs-lisp
 (define-skeleton skel-person-properties
   "Insert the org title and filetags for a person."
   ""
-  "#+TITLE: "
+  "#+TITLE: @"
   _ - \n
-  "#+FILETAGS: company position\n")
+  "#+FILETAGS: company position\n"
+  "#+EMAIL:\n"
+  "#+OFFICE:\n"
+  "#+CELL:\n")
 #+END_SRC
 
-Workorder properties block
+***** Workorder properties block
 #+BEGIN_SRC emacs-lisp
 (define-skeleton skel-workorder-properties
   "Insert the org title and filetags for a workorder"
   ""
   "#+TITLE: Workorder "
   _ - \n
-  "#+FILETAGS: workorder customer city state topics\n")
+  "#+FILETAGS: wo# workorder customer city state topics\n")
 #+END_SRC
 
-Meeting properties block
+***** Meeting properties block
 #+BEGIN_SRC emacs-lisp
 (define-skeleton skel-meeting-properties
   "Insert the org title and filetags for a meeting"
@@ -639,10 +642,10 @@ Meeting properties block
   "#+TITLE: "
   _ -
   " Meeting\n"
-  "#+FILETAGS: meeting customer city state attendees topics\n")
+  "#+FILETAGS: meeting date customer city state attendees topics\n")
 #+END_SRC
 
-Bind the snippets (in the =abbrev-file-name= file)
+**** Bind the snippets (in the =abbrev-file-name= file)
 #+BEGIN_SRC emacs-lisp  :tangle ./abbrev_defs
 ;;-*-coding: utf-8;-*-
 (define-abbrev-table 'org-mode-abbrev-table