Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zathura
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
111
Issues
111
List
Boards
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwmt
zathura
Commits
b222aa4b
Commit
b222aa4b
authored
Feb 05, 2016
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'Louisvh-develop' into develop
parents
80a0ae9f
9af0064f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
2 deletions
+9
-2
doc/man/zathurarc.5.rst
doc/man/zathurarc.5.rst
+7
-0
zathura/config.c
zathura/config.c
+2
-0
zathura/main.c
zathura/main.c
+0
-2
No files found.
doc/man/zathurarc.5.rst
View file @
b222aa4b
...
...
@@ -307,6 +307,13 @@ The following shortcut functions can be mapped:
Zoom in or out.
* ``mark_add``
Set a quickmark.
* ``mark_evaluate``
Go to a quickmark.
Pass arguments
^^^^^^^^^^^^^^
Some shortcut function require or have optional arguments which influence the
...
...
zathura/config.c
View file @
b222aa4b
...
...
@@ -466,6 +466,8 @@ config_load_default(zathura_t* zathura)
girara_shortcut_mapping_add
(
gsession
,
"goto"
,
sc_goto
);
girara_shortcut_mapping_add
(
gsession
,
"jumplist"
,
sc_jumplist
);
girara_shortcut_mapping_add
(
gsession
,
"bisect"
,
sc_bisect
);
girara_shortcut_mapping_add
(
gsession
,
"mark_add"
,
sc_mark_add
);
girara_shortcut_mapping_add
(
gsession
,
"mark_evaluate"
,
sc_mark_evaluate
);
girara_shortcut_mapping_add
(
gsession
,
"navigate"
,
sc_navigate
);
girara_shortcut_mapping_add
(
gsession
,
"navigate_index"
,
sc_navigate_index
);
girara_shortcut_mapping_add
(
gsession
,
"print"
,
sc_print
);
...
...
zathura/main.c
View file @
b222aa4b
...
...
@@ -114,12 +114,10 @@ init_zathura(const char* config_dir, const char* data_dir,
return
NULL
;
}
#ifdef WITH_SYNCTEX
if
(
synctex_editor
!=
NULL
)
{
girara_setting_set
(
zathura
->
ui
.
session
,
"synctex-editor-command"
,
synctex_editor
);
}
#endif
return
zathura
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment