From 52dbf8fdf383b16d3863974829550c879295d8d6 Mon Sep 17 00:00:00 2001 From: gambas Date: Tue, 9 Nov 2021 02:10:18 +0100 Subject: [PATCH] Automatic completion: Do not insert a space if the completion is triggered by a bracket, a point or an exclamation mark. [DEVELOPMENT ENVIRONMENT] * BUG: Automatic completion: Do not insert a space if the completion is triggered by a bracket, a point or an exclamation mark. --- app/src/gambas3/.src/Editor/Code/FCompletion.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/gambas3/.src/Editor/Code/FCompletion.class b/app/src/gambas3/.src/Editor/Code/FCompletion.class index 0939ad05e..5d348cb6c 100644 --- a/app/src/gambas3/.src/Editor/Code/FCompletion.class +++ b/app/src/gambas3/.src/Editor/Code/FCompletion.class @@ -926,7 +926,7 @@ Public Function ManageKey() As Boolean If InStr("([.!", Key.Text) > 0 Then - InsertItem + InsertItem(True) Return Else If InStr("=+-*/^", Key.Text) Then