Hello,
On Thu, Jul 09, 2009 at 05:33:51PM +0545, Bibek Paudel wrote:
> 1. My .conkerorrc file doesn't seem to work:
> I've created a .conkerorrc file and entered a few settings like the one
> mentioned here:
http://conkeror.org/Tabs but it seems like it isn't working.
> Then, I tried replacing the .conkeror file with a simpler one that just defined
> a couple of keybindings. I entered the file's full path in the start page (C-h
> i) where a text box for this purpose is located. Somewhere I read that the
> command to reload the rc file with "rcinit" command but I couldn't understand
> where to enter that command.
Current conkeror from git does not require you to enter the filename
in the form in the start page. It will automatically load ~/.conkerorrc
(if it is a file) or ~/.conkerorrc/*.js (if it is a directory). If you
still have trouble getting your rc to load, comment or delete everything
in it, and see if you can get some simple terminal output:
dumpln("hello, world!");
As someone else mentioned, the command is `M-x reinit'.
> search using '/' instead of C-s
Some vi-like search bindings:
define_key(content_buffer_normal_keymap, "/", "isearch-forward");
define_key(content_buffer_normal_keymap, "?", "isearch-backward");
define_key(content_buffer_normal_keymap, "n", "isearch-continue-forward");
define_key(content_buffer_normal_keymap, "N", "isearch-continue-backward");
The commands isearch-continue-[forward/backward] are bound on S and R
by default, and you may just want to use those unless you are planning
to make a whole new binding set.
> open link in new buffer with F instead of C-u f
define_key(default_global_keymap, "F", "follow-new-buffer");
--
John Foerch
_______________________________________________
Conkeror mailing list
Conkeror@...
https://www.mozdev.org/mailman/listinfo/conkeror