ic10editor-update #4

Merged
dbidwell merged 8 commits from ic10editor-update into master 2025-12-24 12:41:00 -07:00
Showing only changes of commit 47bcd0be34 - Show all commits

View File

@@ -37,7 +37,6 @@ public class SlangFormatter : ICodeFormatter
public SlangFormatter()
: base()
{
L.Info("Slang Constructor");
OnCodeChanged += HandleCodeChanged;
OnCaretMoved += UpdateIc10Formatter;
}
@@ -198,7 +197,6 @@ public class SlangFormatter : ICodeFormatter
var tab = Editor.ParentTab;
if (Ic10Editor == null)
{
L.Info("Ic10Editor was null");
iC10CodeFormatter = new IC10CodeFormatter();
Ic10Editor = new Editor(Editor.KeyHandler);
Ic10Editor.IsReadOnly = true;
@@ -207,7 +205,6 @@ public class SlangFormatter : ICodeFormatter
if (tab.Editors.Count < 2)
{
L.Info("Adding new editor tab");
tab.AddEditor(Ic10Editor);
}