diff --git a/pdf_viewer/keys.config b/pdf_viewer/keys.config index 7f5c83daa..dab5fd7b0 100644 --- a/pdf_viewer/keys.config +++ b/pdf_viewer/keys.config @@ -3,6 +3,7 @@ # the syntax is pretty simple. Some examples: #command k (command is executed when k is pressed) #command (command is executed when k is pressed while holding control) +#command (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 (command is executed when k is pressed while holding alt) #command + (command is executed when = is pressed while holding shift) @@ -11,6 +12,8 @@ #command gt (command is executed when g is pressed and then t is pressed) #command gDt (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 binds to the physical Control key and binds to the physical Command (⌘) key. # you can execute multiple commands using the following syntax: #command1;command2;command3 # for more information see the documentation at https://sioyek-documentation.readthedocs.io/