#593444 mupdf: please support more keyboard shortcut keys

Package:
mupdf
Source:
mupdf
Description:
lightweight PDF viewer
Submitter:
Marius Mikucionis
Date:
2026-08-13 17:37:20 UTC
Severity:
wishlist
Tags:
#593444#5
Date:
2010-08-18 09:37:20 UTC
From:
To:
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

#593444#10
Date:
2010-08-29 16:40:04 UTC
From:
To:
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

#593444#15
Date:
2010-08-31 08:59:41 UTC
From:
To:
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

#593444#20
Date:
2010-09-18 18:33:57 UTC
From:
To:
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.