1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

TextEditor: Highlight AF files as INI

This commit is contained in:
Maciej 2021-12-28 11:21:09 +01:00 committed by Andreas Kling
parent ec21edb602
commit 00d1dbb95b

View file

@ -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();