SmallSense__SmalltalkEditSupport.st
changeset 217 6ff466b83ff9
parent 176 df6d3225d1e4
child 219 c69943a410fd
--- a/SmallSense__SmalltalkEditSupport.st	Thu May 15 17:58:25 2014 +0100
+++ b/SmallSense__SmalltalkEditSupport.st	Sun May 18 10:24:28 2014 +0100
@@ -183,6 +183,13 @@
     lastTypedKey1 := lastTypedKey0.
     lastTypedKey0 := key.
 
+    key == #CodeCompletion ifTrue:[ 
+        completionController notNil ifTrue:[
+            ^ completionController handleKeyPress:key x:x y:y 
+        ].
+        ^ false
+    ].     
+
     key == #BackSpace ifTrue:[
         backspaceIsUndo ifTrue:[
              textView undo.
@@ -219,7 +226,7 @@
     ^ false.
 
     "Created: / 07-03-2010 / 09:36:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 29-01-2014 / 10:31:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 17-05-2014 / 21:22:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 keyPressDoubleColon