mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-12-29 11:16:00 +01:00
Save position on the jumplist before and after jumping to a bookmark
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
afd008f466
commit
a0c12d4cdd
1 changed files with 5 additions and 1 deletions
|
@ -111,7 +111,11 @@ cmd_bookmark_open(girara_session_t* session, girara_list_t* argument_list)
|
|||
return false;
|
||||
}
|
||||
|
||||
return page_set(zathura, bookmark->page - 1);
|
||||
zathura_jumplist_add(zathura);
|
||||
page_set(zathura, bookmark->page - 1);
|
||||
zathura_jumplist_add(zathura);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Reference in a new issue