From 263071056ce8b5bf1d2a3c29794b0d043bad47f3 Mon Sep 17 00:00:00 2001 From: rearman Date: Fri, 3 May 2024 17:08:05 -0400 Subject: [PATCH] Update and organize snippets --- init.org | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/init.org b/init.org index 0c569ed..c64ac30 100644 --- 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 -- 2.39.5