Skip to content

Instantly share code, notes, and snippets.

@ivey
Created October 24, 2008 15:22
Show Gist options
  • Save ivey/19455 to your computer and use it in GitHub Desktop.
Save ivey/19455 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)
(save-excursion
(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