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; }