ARCed.Scintilla.SnippetManager.Scintilla_BeforeTextInsert C# (CSharp) Method

Scintilla_BeforeTextInsert() private method

private Scintilla_BeforeTextInsert ( object sender, TextModifiedEventArgs e ) : void
sender object
e TextModifiedEventArgs
return void
        private void Scintilla_BeforeTextInsert(object sender, TextModifiedEventArgs e)
        {
            if (this._snippetLinks.IsActive && !this._pendingUndo && !(e.UndoRedoFlags.IsUndo || e.UndoRedoFlags.IsRedo))
            {
                this._pendingUndo = true;
                Scintilla.UndoRedo.BeginUndoAction();
                this._snippetLinkTimer.Enabled = true;
            }
        }