Created
January 26, 2012 22:57
-
-
Save robertzx/1685658 to your computer and use it in GitHub Desktop.
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
;;;###autoload | |
(defun gist-list () | |
"Displays a list of all of the current user's gists in a new buffer." | |
(interactive) | |
(message "Retrieving list of your gists...") | |
(github-with-auth-info login token | |
(gist-request | |
(format "https://gist.github.com/api/v1/xml/gists/%s" login) | |
'gist-lists-retrieved-callback))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment