Skip to content

Instantly share code, notes, and snippets.

@dacap
Created August 25, 2015 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacap/0b6ab10c9bd77df125dd to your computer and use it in GitHub Desktop.
Save dacap/0b6ab10c9bd77df125dd to your computer and use it in GitHub Desktop.
Fix Ctrl+ and Ctrl- to zoom in/out
<keyboard version="1">
<commands>
<key command="Zoom" shortcut="Ctrl++ Pad">
<param name="action" value="in" />
</key>
<key command="Zoom" shortcut="Ctrl++">
<param name="action" value="in" />
</key>
<key command="Zoom" shortcut="Ctrl+- Pad">
<param name="action" value="out" />
</key>
<key command="Zoom" shortcut="Ctrl+-">
<param name="action" value="out" />
</key>
</commands>
<quicktools>
<key tool="move" shortcut="Ctrl" mac="Cmd" />
</quicktools>
</keyboard>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment