From a783346a798254c9d7e72a59b2288f04b260c7cb Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 25 Apr 2021 18:01:45 -0700 Subject: [PATCH] =?UTF-8?q?[oni-org]=20Specialize=20=E2=80=98C-a=E2=80=99?= =?UTF-8?q?=20and=20=E2=80=98C-e=E2=80=99=20for=20org=20elements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When on a heading, first move to the beginning of the heading title, and then to the beginning of the line. For moving to the end, first move to the end of the title, and then past any tags. --- oni-org/oni-org.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el index d84db26..bc44064 100644 --- a/oni-org/oni-org.el +++ b/oni-org/oni-org.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2021.0425.180045 +;; Version: 2021.0425.180137 ;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons org-journal) ;; This program is free software; you can redistribute it and/or modify @@ -211,6 +211,7 @@ _l_: Store link ^^ _j_: Journal entry (setq org-pretty-entities t) (setq org-return-follows-link t) (setq org-return-follows-link t) +(setq org-special-ctrl-a/e t) (setq org-src-fontify-natively t) (setq org-tags-column -72) (setq org-tags-sort-function #'string<)