Skip to content

Commit

Permalink
fix: Make Home/End generate jumplist entry
Browse files Browse the repository at this point in the history
  • Loading branch information
laomuon committed May 1, 2024
1 parent b5472ba commit f0c0b14
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions zathura/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,9 @@ void config_load_default(zathura_t* zathura) {
girara_shortcut_add(gsession, 0, GDK_KEY_f, NULL, sc_follow, (mode), 0, NULL); \
\
girara_shortcut_add(gsession, 0, 0, "gg", sc_goto, (mode), TOP, NULL); \
girara_shortcut_add(gsession, 0, GDK_KEY_Home, NULL, sc_goto, (mode), TOP, NULL); \
girara_shortcut_add(gsession, 0, 0, "G", sc_goto, (mode), BOTTOM, NULL); \
girara_shortcut_add(gsession, 0, GDK_KEY_End, NULL, sc_goto, (mode), BOTTOM, NULL); \
\
girara_shortcut_add(gsession, 0, GDK_KEY_m, NULL, sc_mark_add, (mode), 0, NULL); \
girara_shortcut_add(gsession, 0, GDK_KEY_apostrophe, NULL, sc_mark_evaluate, (mode), 0, NULL); \
Expand Down

0 comments on commit f0c0b14

Please sign in to comment.