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.
This commit is contained in:
gambas 2021-11-09 02:10:18 +01:00
parent 33140371d1
commit 52dbf8fdf3

View file

@ -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