Add evil consistent navigate history keybindings to pdf-layer

This commit is contained in:
Daniel Nicolai 2020-12-15 15:04:04 +01:00 committed by Maximilian Wolff
parent ad4ee80e56
commit 0174002ebf
3 changed files with 6 additions and 2 deletions

View File

@ -2968,6 +2968,8 @@ files (thanks to Daniel Nicolai)
- Fixed ~'~ =pdf-view-jump-to-register= (thanks to duianto)
- Key bindings:
- Added to pdf-view mode and transient state
- ~C-o~ history-backward (previous view)
- ~C-i~ history-forward (next view)
- ~[~ history-backward (previous view)
- ~]~ history-forward (next view)
- ~?~ toggle transient sate documentation hint (shown by default)

View File

@ -121,8 +121,8 @@ If you use Emacs editing style, check the key bindings at the [[https://github.c
| ~m~ | Set mark |
| ~'~ | Go to mark |
| ~y~ | Yank selected region |
| ~[~ | History back |
| ~]~ | History forward |
| ~C-o~ or ~[~ | History back |
| ~C-i~ or ~]~ | History forward |
|----------------------+-------------------------------------------|
| *Search* | |
|----------------------+-------------------------------------------|

View File

@ -72,6 +72,8 @@
(kbd "C-u") 'pdf-view-scroll-down-or-previous-page
(kbd "C-d") 'pdf-view-scroll-up-or-next-page
(kbd "``") 'pdf-history-backward
(kbd "C-o") 'pdf-history-backward
(kbd "C-i") 'pdf-history-forward
"[" 'pdf-history-backward
"]" 'pdf-history-forward
"'" 'pdf-view-jump-to-register