Last active
December 31, 2015 07:39
-
-
Save ryseto/7955308 to your computer and use it in GitHub Desktop.
Open the bibitem in BibDesk.app
This file contains hidden or 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 MyTeX-open-item-BibDesk () | |
"Open the bibitem in BibDesk.app" | |
(interactive) | |
(let* ((s (save-excursion | |
(skip-chars-backward "^{,") | |
(point))) | |
(e (save-excursion | |
(skip-chars-forward "^},") | |
(point)))) | |
(browse-url (concat "x-bdsk://" (buffer-substring-no-properties s e))))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment