Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions pdf_viewer/keys.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# the syntax is pretty simple. Some examples:
#command k (command is executed when k is pressed)
#command <C-k> (command is executed when k is pressed while holding control)
#command <D-k> (command is executed when k is pressed while holding command/meta)
#command K (command is executed when K is entered, which is shift+k)
#command <A-k> (command is executed when k is pressed while holding alt)
#command + (command is executed when = is pressed while holding shift)
Expand All @@ -11,6 +12,8 @@
#command gt (command is executed when g is pressed and then t is pressed)
#command g<C-n>Dt (command is executed when g is pressed and then n is pressed while holding\
# control and then d is pressed while holding shift and then t is pressed)
# Note: on macOS, Qt swaps Ctrl and Cmd by default (see Qt::AA_MacDontSwapCtrlAndMeta),
# so <C-k> binds to the physical Control key and <D-k> binds to the physical Command (⌘) key.
Comment on lines +15 to +16
# you can execute multiple commands using the following syntax:
#command1;command2;command3 <keybinding>
# for more information see the documentation at https://sioyek-documentation.readthedocs.io/
Expand Down