From 29c78ac24386809ed7fa436ed22e7b1cba8a80fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D0=BE=D0=BD=D0=B4=D0=B0=D1=80=D0=B5=D0=B2=20=D0=98?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD?= Date: Sun, 30 Dec 2018 11:34:43 +0100 Subject: [PATCH] fix #1619 --- .../IB/CodeCompletion/CodeCompletionHighlighter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VisualPascalABCNET/IB/CodeCompletion/CodeCompletionHighlighter.cs b/VisualPascalABCNET/IB/CodeCompletion/CodeCompletionHighlighter.cs index e9a398056..b5338ea5c 100644 --- a/VisualPascalABCNET/IB/CodeCompletion/CodeCompletionHighlighter.cs +++ b/VisualPascalABCNET/IB/CodeCompletion/CodeCompletionHighlighter.cs @@ -221,7 +221,7 @@ namespace VisualPascalABC c = textArea.Document.TextContent[off]; } c = char.ToLower(c); - if (c != '=' && c != 't' && c != 'd' && c != 'o' && c != '{') + if (c != '=' && c != 't' && c != 'd' && c != 'o' && c != '{' && c != 'c') { return true; }