Is there any way to add custom language syntax highlighting to JetBrains IDE's?
In my case, i want to highlight MATLAB code in PyCharm. IDE is suggesting me 'Mathematica' plugin, which doesn't work correctly.
Is there any way to add custom language syntax highlighting to JetBrains IDE's?
In my case, i want to highlight MATLAB code in PyCharm. IDE is suggesting me 'Mathematica' plugin, which doesn't work correctly.
You can add any syntax highlighting by importing a corresponding TextMate bundle to PyCharm or any other JetBrains IDE.
Here's a blog post covering this topic.
For simple highlighting (without installing an IntelliJ plugin) you can simple create a new file type:
and configure presentation and highlighting of keywords, comments, numbers etc. in files of a specific custom file type.