Reputation: 23763
I'm using IntelliJ IDEA 12 Community Edition, and am trying to set the syntax coloring for Javascript files. When I choose File > Settings > IDE Settings > Editor > Colors & Fonts, Javascript is not an option in the list. Is this a limitation of the Community Edition IDE, or am I missing something? The others I need are listed, like Java and HTML, but Javascript is missing from the list.
Thanks.
Upvotes: 29
Views: 39227
Reputation: 380
There is WebCalm plugin that adds JavaScript support: syntax highlighting, completion and other features. It's free and open-source.
Disclaimer: I'm the developer.
Upvotes: 2
Reputation: 380
2023 answer
TextMate Bundles plugin is built-in in modern ItelliJ IDEA versions and it has JavaScript bundle built-in but to make it work you have to remove JavaScript (syntax highlighting only)
from Recognized File Types
:
Settings > Editor > File Types > JavaScript (syntax highlighting only)
*.js
from File name patterns
Upvotes: 7
Reputation: 705
Alternative I tried (but raised another issue):
This has enabled to opening .js files into VS code when we command from IntelliJ Idea, but strangely, .js got disappeared from "Find in files" search list.
Inputs are welcomed, whether I had configured it wrong.
Upvotes: -1
Reputation: 101
The TextMate Bundles Support plug-in is not enough. You also need specific language bundles.
A detailed explanation with screenshots can be found here
Upvotes: 10
Reputation: 1135
I found this question after searching by "how to enable JS syntax highlight into JSP files" in my Intellij Community Edition.
Following the suggestion to use TextMate Bundles, I checked that it's already installed by default, including JSP support (built-in). But it did not work.
So, I fixed it by just removing the "*.jsp" pattern from "File Types > JSP", and after that now my IDE is using TextMate syntax highlight properly.
Upvotes: 3
Reputation: 13519
Or buy it for $149 (personal ultimate edition). I've been buying it since 2013 and find it far superior to XCode. This is just my personal opinion though. Download a trial and see how you like it!
Pricing: https://www.jetbrains.com/idea/buy/#personal?billing=yearly
Trial: https://www.jetbrains.com/idea/download/
ps: I'm not endorsed or affiliated with Jetbrains. Just a fan.
Upvotes: 0
Reputation: 29867
Use Visual Studio Code for Javascript support when using IntelliJ Community Edition. It's free and has all the support you would get for the paid version of IntelliJ Ultimate.
Upvotes: 0
Reputation: 401975
JavaScript support is supported in Ultimate Edition, but not in Community Edition.
For the basic syntax highlighting you can try the TextMate Bundles Support plug-in. See this document for the setup instructions (it's for PhpStorm, but instructions for IntelliJ IDEA would be the same).
Upvotes: 21