> Anybody else have any nice .conkerorrc snippets to share?
Here is my .conkerorrc.
/* -*- javascript -*-
TO VIEW SOURCE FILES
# (find-conkerorfile "")
# (view-conkerorfile "bindings.js")
What are these two lines? They appear to be emacs lisp but it's not
clear why they're in your .conkerorrc file or what they do.
// kill-buffer without query
function my_kill_browser()
{
getBrowser().killCurrentBrowser();
}
add_command("kill-buffer", my_kill_browser, []);
I prefer to have the confirmation prompt before I kill a buffer;
however, this is a good idea.
// reload .conkerorrc
function reinit()
{
load_rc_file("/home/rubikitch/.conkerorrc");
}
add_command("reinit", reinit, []);
I've been making a lot of minor mods to my conkerorrc file and have
been using the "source" command to re-load the file. This is a
convenient shortcut and it will be going into my .conkerorrc file too!
Thanks for sharing your mods!
- Bill
_______________________________________________
Conkeror mailing list
[email protected]
http://mozdev.org/mailman/listinfo/conkeror