fbpdf: add d command to sleep
[fbpdf.git] / README
blob1caa9eb8888fca78ab3f3a4b014de9412f476675
1 FBPDF
2 =====
4 fbpdf is a framebuffer pdf/djvu file viewer.  It can use either
5 mupdf or poppler libraries for rendering pdf files and it uses
6 djvulibre library for rendering djvu files.  Note that fbpdf
7 creates different binaries for each library.  So if you want to
8 use fbpdf only for viewing pdf files using mupdf library you
9 can compile it using "make fbpdf".  See the Makefile for other
10 targets.  The following options can be specified when starting
11 fbpdf (or fbdjvu and fbpdf2):
13   fbpdf [-r rotation] [-z zoom x10] [-p page] filename
15 KEYS
16 ====
18 The following table describes the commands available in fbpdf.
19 Most of these commands accept a numerical prefix.  For instance,
20 '^F' tells fbpdf to go to the next page while '5^F' tells it to
21 move to the fifth next page.
23 ==============  ================================================
24 KEY             ACTION
25 ==============  ================================================
26 ^F/J            next page
27 ^B/K            previous page
28 G               goto page (goto the last page if no prefix)
29 o               set current page number (for 'G' command only)
30 z               set zoom multiplied by 10 (i.e. '15z' = 150%)
31 r               set rotation in degrees
32 i               print info
33 q               quit
34 ^[              (escape) clear numerical prefix
35 mx              mark page as 'x' (or any other letter)
36 'x              jump to the page marked as 'x'
37 `x              jump to the page and position marked as 'x'
38 j               scroll down
39 k               scroll up
40 h               scroll left
41 l               scroll right
42 [               align with the left edge of the page
43 ]               align with the right edge of the page
44 {               align with the leftmost character on the page
45 }               align with the rightmost character on the page
46 H               show top
47 M               show middle
48 L               show bottom
49 ' '/^D          (space) page down
50 ^H/^U           (backspace) page up
51 ^L              redraw
52 e               reload current file
53 f               zoom to fit page height
54 w               zoom to fit page width
55 W               zoom to fit page contents horizontally
56 d               sleep one second before the next command
57 ==============  ================================================