We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I wrote this function to be able to jump to gmail from a given email in gnus. if you are interested, i can create a pull request
(defun dmg-gmail-goto-message-id () (interactive) (save-excursion (setq save-buffer-name (buffer-name)) (switch-to-buffer-other-window gnus-article-buffer) (gnus-summary-toggle-header 1) (goto-char (point-min)) (if (re-search-forward "^Message-ID: *\\(.*\\)$") (browse-url (format "https://mail.google.com/mail/u/0/#search/rfc822msgid%%3A%s" (org-link-escape (match-string 1)) ) ) (message "Message id not found") ) (gnus-summary-toggle-header -1) (switch-to-buffer-other-window save-buffer-name) ) )
The text was updated successfully, but these errors were encountered:
Interesting. Could you change browse-url to browse-url-generic? Please also format code a little bit before send me the pull request.
browse-url
browse-url-generic
Sorry, something went wrong.
No branches or pull requests
I wrote this function to be able to jump to gmail from a given email in gnus. if you are interested, i can create a pull request
The text was updated successfully, but these errors were encountered: