Skip to content

Instantly share code, notes, and snippets.

@lamdor
Created December 26, 2008 15:19
Show Gist options
  • Save lamdor/40075 to your computer and use it in GitHub Desktop.
Save lamdor/40075 to your computer and use it in GitHub Desktop.
//dictate that we want to open new urls in a new buffer
//rather than in a new frame
url_remoting_fn = load_url_in_new_buffer;
//set default directory for downloads
set_default_directory("/Users/luke/Desktop/Inbox/");
//don't allow a kill-buffer command to kill the last buffer in the window.
can_kill_last_buffer = false;
// Gmail Mode
require("page-modes/gmail.js");
// Delicious
add_webjump("d", "http://del.icio.us/tag/%s");
add_delicious_webjumps("luke.amdor");
// reload conkerorrc
interactive("reload-rc",
"Reload the Conkerorrc.",
function(I) { load_rc_file("/Users/luke/.conkerorrc"); });
interactive("say-hello", "Says hello",
function(I) {
I.minibuffer.message("Hello");
})
interactive("ff", "Open the current page in firefox",
function(I) {
window.openDialog("chrome://browser/content/");
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment