use Ctrl-Shift as default instead of Alt-Shift release701
authorchrislovsund@netbeans.org
Tue, 19 Jun 2012 14:49:16 +0200
branchrelease701
changeset 244f5880abd4f82
parent 243 34d7ef68e86a
child 245 358bb49c1c5f
use Ctrl-Shift as default instead of Alt-Shift
Issue #EADS-2775 - PLSQL shortcuts for Execute and debug should be similar to Netbeans standard
PLSQL/Debugging/src/org/netbeans/modules/plsql/debug/PlsqlDebugAction.java
PLSQL/Execution/src/org/netbeans/modules/plsql/execution/PlsqlExecuteAction.java
     1.1 --- a/PLSQL/Debugging/src/org/netbeans/modules/plsql/debug/PlsqlDebugAction.java	Tue Jun 19 14:47:18 2012 +0200
     1.2 +++ b/PLSQL/Debugging/src/org/netbeans/modules/plsql/debug/PlsqlDebugAction.java	Tue Jun 19 14:49:16 2012 +0200
     1.3 @@ -99,7 +99,7 @@
     1.4  @ActionID(id = "org.netbeans.modules.plsql.debug.PlsqlDebugAction", category = "PLSQL")
     1.5  @ActionRegistration(displayName = "#CTL_PlsqlDebugAction", iconBase = "org/netbeans/modules/plsql/debug/debug.png")
     1.6  @ActionReferences({
     1.7 -//   @ActionReference(path = "Shortcuts", name = "DS-D"),
     1.8 +   @ActionReference(path = "Shortcuts", name = "DS-D"),
     1.9     @ActionReference(path = "Shortcuts", name = "OS-D"),
    1.10     @ActionReference(path = "Editors/text/x-plsql/Popup", name = "org-netbeans-modules-plsql-debug-PlsqlDebugAction",
    1.11     position = 1020, separatorAfter = 1050)
     2.1 --- a/PLSQL/Execution/src/org/netbeans/modules/plsql/execution/PlsqlExecuteAction.java	Tue Jun 19 14:47:18 2012 +0200
     2.2 +++ b/PLSQL/Execution/src/org/netbeans/modules/plsql/execution/PlsqlExecuteAction.java	Tue Jun 19 14:49:16 2012 +0200
     2.3 @@ -77,7 +77,7 @@
     2.4  @ActionID(id = "org.netbeans.modules.plsql.execution.PlsqlExecuteAction", category = "PLSQL")
     2.5  @ActionRegistration(displayName = "#CTL_Execution", iconBase = "org/netbeans/modules/plsql/execution/execute.png")
     2.6  @ActionReferences({
     2.7 -//    @ActionReference(path = "Shortcuts", name = "DS-E"),
     2.8 +    @ActionReference(path = "Shortcuts", name = "DS-E"),
     2.9      @ActionReference(path = "Shortcuts", name = "OS-E"),
    2.10      @ActionReference(path = "Editors/text/x-plsql/Popup", name = "org-netbeans-modules-plsql-execution-PlsqlExecuteAction",
    2.11      position = 405, separatorBefore = 404)