Como navegar usando h, j, k, l (como Vi) no Xpdf?

1

man xpdf diz o seguinte:

Previous versions of xpdf included a "viKeys" X resource. It is no longer available, but the following bindings are equivalent:

bind h any scrollLeft(16)
bind l any scrollRight(16)
bind k any scrollUp(16)
bind j any scrollDown(16)

Mas não consigo usar essas chaves para navegação. Eles trabalham? Alguma configuração especial necessária do meu lado?

    
por Senthil Kumaran 24.09.2009 / 10:30

2 respostas

0

Bem, eu percebi isso. Vá editar o arquivo / etc / xpdf / xpdfrc e adicione o seguinte

bind h any scrollLeft(16)
bind l any scrollRight(16)
bind k any scrollUp(16)
bind j any scrollDown(16)

Agora, tenho o comportamento desejado.

    
por 24.09.2009 / 10:36
3

Em vez de adicionar essas quatro linhas a /etc/xpdf/xpdfrc como sugerido por a resposta de Senthil Kumaran , Eu criei um arquivo ~/.xpdfrc .

Sou francês e uso um teclado Dvorak bépo, então meu arquivo ~/.xpdfrc inclui:

bind c any scrollLeft(16)
bind r any scrollRight(16)
bind s any scrollUp(16)
bind t any scrollDown(16)
    
por 21.11.2012 / 15:05