From c6a81920b6e60bca887ea4304c0d5bed5bfc3772 Mon Sep 17 00:00:00 2001 From: rearman Date: Fri, 8 Dec 2023 16:19:46 -0500 Subject: [PATCH] Add cursor positions to org abbreviations --- init.org | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/init.org b/init.org index 62b8d5d..2966277 100644 --- a/init.org +++ b/init.org @@ -598,7 +598,8 @@ Facility properties block (define-skeleton skel-facility-properties "Insert the org title and filetags for a new facility." "" - "#+TITLE: \n" + "#+TITLE: " + _ - \n "#+FILETAGS: customer city state pm sm aka\n") #+END_SRC @@ -607,7 +608,8 @@ Person properties block (define-skeleton skel-person-properties "Insert the org title and filetags for a person." "" - "#+TITLE: \n" + "#+TITLE: " + _ - \n "#+FILETAGS: company position\n") #+END_SRC @@ -616,7 +618,8 @@ Workorder properties block (define-skeleton skel-workorder-properties "Insert the org title and filetags for a workorder" "" - "#+TITLE: Workorder ###\n" + "#+TITLE: Workorder " + _ - \n "#+FILETAGS: workorder customer city state topics\n") #+END_SRC @@ -625,7 +628,9 @@ Meeting properties block (define-skeleton skel-meeting-properties "Insert the org title and filetags for a meeting" "" - "#+TITLE: TOPIC Meeting\n" + "#+TITLE: " + _ - + " Meeting\n" "#+FILETAGS: meeting customer city state attendees topics\n") #+END_SRC -- 2.39.5