Created
July 21, 2021 20:52
-
-
Save agzam/607acb518f584e0ae6b902697dc53b45 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun outline-collapsed? () | |
"Returns nil if the top outline heading is collapsed (hidden)" | |
(save-excursion | |
(when (org-get-outline-path 'with-self?) | |
(ignore-errors (outline-up-heading 1)) | |
(let* ((beg (point)) | |
(end (+ 1 (line-end-position)))) | |
(not | |
(seq-empty-p | |
(seq-filter | |
(lambda (o) | |
(and (eq (overlay-get o 'invisible) 'outline) | |
(save-excursion | |
(goto-char (overlay-start o)) | |
(outline-on-heading-p t)))) | |
(overlays-in beg end)))))))) | |
(defun org--get-headline-with-text () | |
"Grabs top level headline and its content" | |
(save-excursion | |
(save-restriction | |
(ignore-errors (outline-up-heading 1)) | |
(let ((heading-shown? (not (outline-collapsed?)))) | |
(when heading-shown? (hide-subtree)) | |
(let* ((elt (org-element-at-point)) | |
(title (org-element-property :title elt)) | |
(beg (progn (org-end-of-meta-data t) (point))) | |
(end (progn (outline-next-visible-heading 1) (point)))) | |
(when heading-shown? (show-subtree)) | |
(list title (buffer-substring-no-properties beg end))))))) | |
(defun org-roam-refile-to-node () | |
"Refile heading to another Org-roam node." | |
(interactive) | |
(let* ((headline? (org-get-outline-path 'with-self?)) | |
(props (org-entry-properties)) | |
(id (org-entry-get nil "id")) | |
(title (if headline? | |
(org-element-property :title (org-element-at-point)) | |
(cadar (org-collect-keywords '("title"))))) | |
(content (cadr (org--get-headline-with-text)))) | |
(when headline? | |
(org-cut-subtree)) | |
(org-roam-capture- | |
:goto nil | |
:node (org-roam-node-create | |
:title title | |
:properties props | |
:id id) | |
:props '(:immediate-finish nil)) | |
(let ((insert-at (plist-get org-capture-plist :position-for-last-stored))) | |
(with-current-buffer (marker-buffer insert-at) | |
(insert content) | |
(mark-whole-buffer) | |
(org-do-promote))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment