diff --git a/DevTools/HackStudio/main.cpp b/DevTools/HackStudio/main.cpp index 02e5047cc1..ae3941922f 100644 --- a/DevTools/HackStudio/main.cpp +++ b/DevTools/HackStudio/main.cpp @@ -48,6 +48,7 @@ #include #include #include +#include #include #include #include @@ -735,6 +736,8 @@ void open_file(const String& filename) current_editor().set_syntax_highlighter(make()); else if (filename.ends_with(".js")) current_editor().set_syntax_highlighter(make()); + else if (filename.ends_with(".ini")) + current_editor().set_syntax_highlighter(make()); else current_editor().set_syntax_highlighter(nullptr);