AGS.Plugin.Lua.LuaScriptEditPane.Scintilla_UpdateUI C# (CSharp) Метод

Scintilla_UpdateUI() публичный Метод

public Scintilla_UpdateUI ( object sender, ScintillaNet.NativeScintillaEventArgs e ) : void
sender object
e ScintillaNet.NativeScintillaEventArgs
Результат void
        void Scintilla_UpdateUI(object sender, NativeScintillaEventArgs e)
        {
            DoBraceMatching();
            if (doShowAutocomplete)
            {
                string words = Regex.Replace(LuaFuncs, @"\s+", " ");
                words = Regex.Replace(words, @"^\s+", "");
                words = Regex.Replace(words, @"\s+$", "");
                words = Regex.Replace(words, @"\S+", @"${0}?1");
                ShowAutoComplete(0, words);
                doShowAutocomplete = false;
            }
        }