Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Philipp Erhardt
katarakt
Commits
4fff3193
Commit
4fff3193
authored
Sep 19, 2014
by
Philipp Erhardt
Browse files
Change default rotate keybinding from u/i to ,/.
parent
1e27db18
Changes
3
Hide whitespace changes
Inline
Side-by-side
doc/katarakt.txt
View file @
4fff3193
...
...
@@ -87,7 +87,7 @@ KEY BINDINGS
Focus next/previous search hit
*\^n*, *^N* ::
Focus next/previous search hit that is currently not visible
*
u
*, *
i
* ::
*
,
*, *
.
* ::
Rotate pages left/right
*\^o*, *^i*, *Alt-Left*, *Alt-Right* ::
Move backward/forward through the jump list. Entries are added automatically when jumping
...
...
share/katarakt.ini
View file @
4fff3193
...
...
@@ -45,8 +45,8 @@ previous_hit=Shift+N
next_invisible_hit
=
Ctrl+N
previous_invisible_hit
=
Ctrl+Shift+N
focus_goto
=
Ctrl+G
rotate_left
=
U
rotate_right
=
I
rotate_left
=
,
rotate_right
=
.
jump_back
=
Ctrl+O, Alt+Left
jump_forward
=
Ctrl+I, Alt+Right
toggle_fullscreen
=
F
...
...
src/config.cpp
View file @
4fff3193
...
...
@@ -64,8 +64,8 @@ CFG::CFG() :
keys
[
"next_invisible_hit"
]
=
QStringList
()
<<
"Ctrl+N"
;
keys
[
"previous_invisible_hit"
]
=
QStringList
()
<<
"Ctrl+Shift+N"
;
keys
[
"focus_goto"
]
=
QStringList
()
<<
"Ctrl+G"
;
keys
[
"rotate_left"
]
=
QStringList
()
<<
"
U
"
;
keys
[
"rotate_right"
]
=
QStringList
()
<<
"
I
"
;
keys
[
"rotate_left"
]
=
QStringList
()
<<
"
,
"
;
keys
[
"rotate_right"
]
=
QStringList
()
<<
"
.
"
;
keys
[
"jump_back"
]
=
QStringList
()
<<
"Ctrl+O"
<<
"Alt+Left"
;
keys
[
"jump_forward"
]
=
QStringList
()
<<
"Ctrl+I"
<<
"Alt+Right"
;
// viewer keys
...
...
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