thanks for the fast viewer! Could you please add support for the following keys? Home -- go to the first page (or go to the top of the page) End -- go to the last page (or go to the bottom of the page) Control+Home -- go to the first page Control+End -- go to the last page
With the new upstream release 0.7 the navigation keys changed a lot, to more vi like bindings. For example `1g' to go to first page and `G' to the last page, `hjkl' for page movement. I can propose the binding you suggested to the upstream, but I think the new binding has already fulfilled your needs. Thoughts? - Kanru
2010/8/29 Kan-Ru Chen <koster@debian.org> Well, I prefer emacs over vi, and still use the keys above, so I would appreciate an extra alias. BTW, what does vi do about Home and End keys? it looks-and-feels strange on my terminal if not erroneous. The functionality is there, true, but the extra key binding would not harm, would it? Marius
Hi,
to thoughts on the issue:
1) bindings should be configurable
2) I looked at the source code. It's doing things like
case XK_Escape:
len = 1; buf[0] = '\033';
...
onkey(buf[0]);
...
so I don't think you can easily add things like "ctrl+home" there.