Skip to content

Instantly share code, notes, and snippets.

@travis
Created August 30, 2011 15:42
Show Gist options
  • Save travis/1181205 to your computer and use it in GitHub Desktop.
Save travis/1181205 to your computer and use it in GitHub Desktop.
open github to a repo
(defmacro github-launcher (name)
(let ((project-name name))
`(defun ,(intern (concat "gh" project-name)) ()
(interactive)
(browse-url ,(concat "http://github.com/travis/" project-name)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment