View difference between Paste ID: 04kkEVHL and A30QVRAW
SHOW: | | - or go back to the newest paste.
1
(defun open-url-under-point-chromium (&rest junk)
2
  "If there is a valid URL under point, open that URL in chromium web-browser. Otherwise, open the URL of the current page in chromium web-browser.
3
4-
NOTE: This function requires w3m to be running."
4+
NOTE: This function requires w3m to be both, be available, and, be running."
5
  (let ((temp-url (w3m-print-this-url)))
6
    (if (not (eq temp-url nil))
7
	(browse-url-chromium temp-url)
8
      (browse-url-chromium (w3m-print-current-url)))))