#+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"
"#+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."
"* 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"
"#+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