Guest User

Untitled

a guest
May 27th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. ;;; org-airmail.el - Support for links to Airmail 3 messages in Org
  2.  
  3. (require 'org)
  4.  
  5. (org-add-link-type "airmail" 'org-airmail-open)
  6. (add-hook 'org-store-link-functions 'org-airmail-store-link)
  7.  
  8. (defun org-airmail-open (url)
  9. "Visit the Airmail message referenced by URL.
  10. URL should be a vaid Airmail message url retrieved from Airmail with
  11. 'Copy Message Link'."
  12. (shell-command
  13. ;; Note: org strips "airmail:" from the link URL
  14. (concat "open -a '/Applications/Airmail 3.app' airmail:"
  15. (shell-quote-argument url))))
  16.  
  17. (provide 'org-airmail)
  18.  
  19. ;;; org-airmail.el ends here
Add Comment
Please, Sign In to add comment