Skip to content

Commit

Permalink
Merge pull request #17 from kaloyan-raev/hotkeys
Browse files Browse the repository at this point in the history
New key bindings for commands
  • Loading branch information
caspark committed Oct 13, 2014
2 parents 03a5462 + 8c5b1e4 commit 3efd1ce
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions com.asparck.eclipse.multicursor.plugin/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,38 @@
<extension point="org.eclipse.ui.bindings">
<key commandId="com.asparck.multicursor.commands.selectAllOccurrences"
contextId="org.eclipse.ui.textEditorScope"
sequence="M1+M2+I"
sequence="ALT+F3"
platform="win32"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key commandId="com.asparck.multicursor.commands.selectAllOccurrences"
contextId="org.eclipse.ui.textEditorScope"
sequence="ALT+F3"
platform="gtk"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key commandId="com.asparck.multicursor.commands.selectAllOccurrences"
contextId="org.eclipse.ui.textEditorScope"
sequence="CTRL+COMMAND+G"
platform="cocoa"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key commandId="com.asparck.multicursor.commands.selectNextOccurrence"
contextId="org.eclipse.ui.textEditorScope"
sequence="ALT+J"
platform="win32"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key commandId="com.asparck.multicursor.commands.selectNextOccurrence"
contextId="org.eclipse.ui.textEditorScope"
sequence="ALT+J"
platform="gtk"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
<key commandId="com.asparck.multicursor.commands.selectNextOccurrence"
contextId="org.eclipse.ui.textEditorScope"
sequence="M1+M2+D"
sequence="CTRL+G"
platform="cocoa"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration">
</key>
</extension>
Expand Down

0 comments on commit 3efd1ce

Please # to comment.