Skip to content

Instantly share code, notes, and snippets.

@robertzx
Created January 26, 2012 22:57
Show Gist options
  • Save robertzx/1685658 to your computer and use it in GitHub Desktop.
Save robertzx/1685658 to your computer and use it in GitHub Desktop.
;;;###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