From f9836c9117b0627ecdb9ac17948a2ec488cb2d23 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 8 Jul 2018 13:27:20 +0200 Subject: [PATCH] show call tips after typing comma, close #344 --- src/ce_synmemo.pas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ce_synmemo.pas b/src/ce_synmemo.pas index 1c728124..f91060f5 100644 --- a/src/ce_synmemo.pas +++ b/src/ce_synmemo.pas @@ -3462,6 +3462,8 @@ begin case c of #39: if autoCloseSingleQuote in fAutoClosedPairs then autoClosePair(autoCloseSingleQuote); + ',': if not fCallTipWin.Visible then + showCallTips(true); '"': if autoCloseDoubleQuote in fAutoClosedPairs then autoClosePair(autoCloseDoubleQuote); '`': if autoCloseBackTick in fAutoClosedPairs then