Пример #1
0
 /// <summary>
 /// Display completion list or calltip info
 /// </summary>
 private void OnChar(ScintillaNet.ScintillaControl Sci, int Value)
 {
     if (Sci.Lexer == 3 || Sci.Lexer == 4)
     {
         ASComplete.OnChar(Sci, Value, true);
     }
 }
Пример #2
0
 /// <summary>
 /// Display completion list or calltip info
 /// </summary>
 private void OnChar(ScintillaNet.ScintillaControl Sci, int Value)
 {
     DebugConsole.Trace(Value);
     if (Sci.Lexer == 3)
     {
         ASComplete.OnChar(Sci, Value, true);
     }
 }
Пример #3
0
        /// <summary>
        /// Display completion list or calltip info
        /// </summary>
        private void OnChar(ScintillaNet.ScintillaControl Sci, int Value)
        {
            if (ASContext.Locked)
            {
                return;
            }

            DebugConsole.Trace(Value);
            if (Sci.Lexer == 3)
            {
                ASComplete.OnChar(Sci, Value, true);
            }
        }