Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

New key bindings for commands #17

Merged
merged 1 commit into from
Oct 13, 2014
Merged
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
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