aboutsummaryrefslogtreecommitdiffstats
path: root/oni-org/oni-org.el
diff options
context:
space:
mode:
Diffstat (limited to 'oni-org/oni-org.el')
-rw-r--r--oni-org/oni-org.el10
1 files changed, 9 insertions, 1 deletions
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 <tom@ryuslash.org>
;; 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