Exemple #1
0
        public LuaCodeEditor()
            : base(new TextArea() { Document = new TextDocument() })
        {
            Options.ShowTabs            = true;
            Options.ConvertTabsToSpaces = true;

            InstallFoldingManager();
            InstallHighlighting();

            SearchPanel.Install(TextArea);
            BracketHighlightRenderer.Install(TextArea);

            TextArea.IndentationStrategy = new LuaIndentationStrategy(this);
        }