]> git.earman.xyz Git - emacsinit.git/commitdiff
Update Skeletons to match usage
authorrearman <rearman@r717.net>
Tue, 29 Jul 2025 16:34:10 +0000 (12:34 -0400)
committerrearman <rearman@r717.net>
Tue, 29 Jul 2025 16:34:10 +0000 (12:34 -0400)
re/re-skeletons.el

index 7844e8c789947515691f6c5ace86a099ac583c3f..48512eabb3a54ecbb69fcca9d7469eac4937fe36 100644 (file)
@@ -5,16 +5,16 @@
 (define-skeleton skel-org-block
   "Insert an org source code block"
   ""
-  "#+BEGIN_SRC "
+  "#+begin_src "
   _ - "\n\n"
-  "#+END_SRC\n")
+  "#+end_src\n")
 
 (define-skeleton skel-org-block-elisp
   "Insert an org emacs lisp block"
   ""
-  "#+BEGIN_SRC emacs-lisp\n"
+  "#+begin_src emacs-lisp\n"
   _ - \n
-  "#+END_SRC\n")
+  "#+end_src\n")
 
 (define-skeleton skel-facility-properties
   "Insert the structure for a new facility."
 (define-skeleton skel-person-properties
   "Insert the org title and filetags for a person."
   ""
-  "#+TITLE: @"
+  "* @"
   _ - \n
-  "#+FILETAGS: company position\n"
-  "#+EMAIL:\n"
-  "#+OFFICE:\n"
-  "#+CELL:\n")
+  ":properties:\n"
+  ":email:\n"
+  ":office:\n"
+  ":cell:\n"
+  ":end:\n")
 
 (define-skeleton skel-workorder-properties
   "Insert the org title and filetags for a workorder"
   ""
-  "#+TITLE: Workorder "
-  _ - \n
-  "#+FILETAGS: wo# workorder customer city state topics\n")
+  "* TODO Workorder "
+  _ - ":#:customer:city:state:topics:\n")
 
 (provide 're-skeletons)
 ;;; re-skeletons.el ends here