Skip to content

Instantly share code, notes, and snippets.

@ivey
Created October 13, 2008 16:26
Show Gist options
  • Save ivey/16554 to your computer and use it in GitHub Desktop.
Save ivey/16554 to your computer and use it in GitHub Desktop.
(defun open-next-http-url ()
"Search forward to the next http/https URL, and open it"
(interactive)
(nonincremental-re-search-forward "https*://")
(browse-url-at-point)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment