#UI_ENHANCEMENT by exept cvs_MAIN expecco_19_2_0 expecco_19_2_0_43 expecco_19_2_0_44
authorClaus Gittinger <cg@exept.de>
Fri, 01 Nov 2019 13:44:29 +0100
branchcvs_MAIN
changeset 3973 ee0b2d717637
parent 3972 269db4c65806
child 3976 8e88fa2ff24b
#UI_ENHANCEMENT by exept class: JavaLintService class changed: #initialize Ctrlspace -> CtrlSpace
tools/JavaLintService.st
--- a/tools/JavaLintService.st	Wed Oct 30 17:13:29 2019 +0100
+++ b/tools/JavaLintService.st	Fri Nov 01 13:44:29 2019 +0100
@@ -46,7 +46,7 @@
     | map |
     map := Screen current keyboardMap.
     map bindValue:#CodeCompletion to: #'Ctrl '.
-    map bindValue:#CodeCompletion to: #'Ctrlspace'.
+    map bindValue:#CodeCompletion to: #'CtrlSpace'.
     "
 
     Smalltalk isInitialized ifTrue:[
@@ -55,8 +55,8 @@
                 | map |
                 map := Screen current keyboardMap.
                 (map keyAtValue:#CodeCompletion) isNil ifTrue:[
-                    map bindValue:#CodeCompletion to: #'Ctrl '.
-                    map bindValue:#CodeCompletion to: #'Ctrlspace'.
+                    map bindValue:#CodeCompletion to: #'Ctrl '.  "/ another Ctrl-space
+                    map bindValue:#CodeCompletion to: #'CtrlSpace'.
                 ].
            ]
         ]