Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
e7dce3e6
Commit
e7dce3e6
authored
May 08, 2015
by
Sebastian Ramacher
Browse files
Merge remote-tracking branch 'haggl/feature/quit-in-index-mode' into develop
parents
30327712
3c5e9e67
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
e7dce3e6
...
...
@@ -24,13 +24,10 @@ zathura-*.tar.gz
# build dirs
.depend
.tx
build/
gcov/
doc/_build
# binaries
zathura
zathura-debug
# version file
version.h
.version-checks/
...
...
zathura/config.c
View file @
e7dce3e6
...
...
@@ -381,6 +381,7 @@ config_load_default(zathura_t* zathura)
girara_shortcut_add
(
gsession
,
0
,
GDK_KEY_Right
,
NULL
,
sc_navigate_index
,
INDEX
,
EXPAND
,
NULL
);
girara_shortcut_add
(
gsession
,
0
,
GDK_KEY_space
,
NULL
,
sc_navigate_index
,
INDEX
,
SELECT
,
NULL
);
girara_shortcut_add
(
gsession
,
0
,
GDK_KEY_Return
,
NULL
,
sc_navigate_index
,
INDEX
,
SELECT
,
NULL
);
girara_shortcut_add
(
gsession
,
0
,
GDK_KEY_q
,
NULL
,
sc_quit
,
INDEX
,
0
,
NULL
);
girara_shortcut_add
(
gsession
,
0
,
0
,
"gg"
,
sc_navigate_index
,
INDEX
,
TOP
,
NULL
);
girara_shortcut_add
(
gsession
,
0
,
0
,
"G"
,
sc_navigate_index
,
INDEX
,
BOTTOM
,
NULL
);
...
...
Write
Preview
Supports
Markdown
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