Skip to content

Instantly share code, notes, and snippets.

@ivey
Created September 22, 2009 01:10
Show Gist options
  • Save ivey/190680 to your computer and use it in GitHub Desktop.
Save ivey/190680 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))
)
(global-set-key "\C-cu" 'open-next-http-url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment