1
0
Fork 0

Add custom ‘org-edna’ finder

This commit is contained in:
Tom Willemse 2020-12-29 18:49:47 -08:00
parent 6f565c0d99
commit 0daa3ae8ed

View file

@ -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