Skip to content

Commit

Permalink
Fix Issue 337 - Fix some keyboard bindings issues: Add Ctrl+P and Ctrl+N
Browse files Browse the repository at this point in the history
for REPL Previous/Next history
Change 'switch repl's namespace' back to Cmd+Alt+N on MacOS
  • Loading branch information
laurentpetit committed Mar 29, 2012
1 parent 30357db commit 4462ccc
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions ccw.core/plugin.xml
Expand Up @@ -672,22 +672,8 @@
<key
commandId="ccw.ui.edit.text.clojure.switchNamespace"
contextId="ccw.ui.clojureEditorScope"
platform="win32"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+M3+N"/>
<key
commandId="ccw.ui.edit.text.clojure.switchNamespace"
contextId="ccw.ui.clojureEditorScope"
platform="gtk"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+M3+N">
</key>
<key
sequence="M3+M4+N"
contextId="ccw.ui.clojureEditorScope"
commandId="ccw.ui.edit.text.clojure.switchNamespace"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
platform="carbon"/>
<key
sequence="M1+M3+K"
contextId="ccw.ui.clojureEditorScope"
Expand Down Expand Up @@ -813,6 +799,13 @@
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M4+ARROW_UP">
</key>
<key
commandId="ccw.ui.repl.history.previous"
contextId="ccw.ui.context.repl"
platform="carbon"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M4+P">
</key>
<key
commandId="ccw.ui.repl.history.next"
contextId="ccw.ui.context.repl"
Expand All @@ -834,6 +827,13 @@
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M4+ARROW_DOWN">
</key>
<key
commandId="ccw.ui.repl.history.next"
contextId="ccw.ui.context.repl"
platform="carbon"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M4+N">
</key>
<key
commandId="ccw.ui.edit.text.clojure.comment.toggle"
contextId="ccw.ui.clojureEditorScope"
Expand Down

0 comments on commit 4462ccc

Please sign in to comment.