From 0daa3ae8ed1d089ddf7706bf1b81e3dff3004ab9 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 29 Dec 2020 18:49:47 -0800 Subject: Add custom ‘org-edna’ finder --- oni-org/oni-org.el | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'oni-org/oni-org.el') diff --git a/oni-org/oni-org.el b/oni-org/oni-org.el index 2a9a9f6..225e6e7 100644 --- a/oni-org/oni-org.el +++ b/oni-org/oni-org.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2020.1227.132121 +;; Version: 2020.1229.184938 ;; Package-Requires: (oni-yasnippet oni-alert oni-hydra org-plus-contrib org-bullets org-edna diminish all-the-icons) ;; This program is free software; you can redistribute it and/or modify @@ -453,5 +453,13 @@ After running it once remove it from `org-capture-after-finalize-hook'." (setq org-capture-templates-contexts '(("n" ((in-mode . "nov-mode"))))) +(defun org-edna-finder/next-sibling-first-child () + "A finder for ‘org-edna’ to find the first child of the next sibling." + (save-excursion + (org-back-to-heading t) + (org-goto-sibling) + (org-goto-first-child) + (list (point-marker)))) + (provide 'oni-org) ;;; oni-org.el ends here -- cgit v1.2.3-54-g00ecf