Skip to content

Instantly share code, notes, and snippets.

@legumbre
Created April 25, 2012 23:12
Show Gist options
  • Select an option

  • Save legumbre/2494323 to your computer and use it in GitHub Desktop.

Select an option

Save legumbre/2494323 to your computer and use it in GitHub Desktop.
point-conkeror-to-url
;; requires a connected mozrepl
(defun point-conkeror-to-url (url)
(with-temp-buffer
(insert
"repl.home();"
(concat "content.location.href= '" url "';")
"repl.enter(content); \n")
(moz-send-region (point-min) (point-max))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment