Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. (defun org-remove-id-from-last-capture ()
  2. "Remove ID property from last `org-capture' entry, save capture buffer."
  3. (let* ((properties (org-entry-properties org-capture-last-stored-marker))
  4. (file (cdr (assoc "FILE" properties))))
  5. (when (org-entry-delete org-capture-last-stored-marker "ID")
  6. (with-current-buffer (get-file-buffer file)
  7. (save-buffer)))))
  8.  
  9. (add-hook 'org-capture-after-finalize-hook #'org-remove-id-from-last-capture)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement