From 00d1dbb95bc25970bee913679291de80ec104225 Mon Sep 17 00:00:00 2001 From: Maciej Date: Tue, 28 Dec 2021 11:21:09 +0100 Subject: [PATCH] TextEditor: Highlight AF files as INI --- Userland/Applications/TextEditor/MainWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/TextEditor/MainWidget.cpp b/Userland/Applications/TextEditor/MainWidget.cpp index b2d67a83ce..08e3749c6c 100644 --- a/Userland/Applications/TextEditor/MainWidget.cpp +++ b/Userland/Applications/TextEditor/MainWidget.cpp @@ -642,7 +642,7 @@ void MainWidget::set_path(StringView path) m_js_highlight->activate(); } else if (m_extension == "gml") { m_gml_highlight->activate(); - } else if (m_extension == "ini") { + } else if (m_extension == "ini" || m_extension == "af") { m_ini_highlight->activate(); } else if (m_extension == "sh" || m_extension == "bash") { m_shell_highlight->activate();