We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When opening .mo files correctly identify if it is a Modelica or a MetaModelica file. Default to Modelica if it can't be decided.
.mo
model M end M;
Detect modelica since MetaModelica doesn't has keyword model.
modelica
model
uniontype Real end Real;
Detect metamodelica since uniontype is not a Modelica keyword.
metamodelica
uniontype
The text was updated successfully, but these errors were encountered:
AnHeuermann
No branches or pull requests
Description
When opening
.mo
files correctly identify if it is a Modelica or a MetaModelica file. Default to Modelica if it can't be decided.Examples
Detect
modelica
since MetaModelica doesn't has keywordmodel
.Detect
metamodelica
sinceuniontype
is not a Modelica keyword.The text was updated successfully, but these errors were encountered: