Is it any way to automate import TextMate themes to IntelliJ IDEA, like converter between these two formats?
1 Answers
Please check the converter created by JetBrains.
This is a tool to convert color schemes from TextMate to IntelliJ Platform based products such as IntelliJ IDEA, RubyMine and PyCharm.
Since the way highlighting works in TextMate is not an exact match for the capabilities of IntelliJ Platform, we try to perform an intelligent mapping between the two. In particular, color definitions not existing in TextMate are remapped from the default IntelliJ color scheme based on the background color used in the TextMate theme, to ensure that the resulting text is readable.
The table of the mappings is not yet complete; additions and corrections are very much welcome.
Note that the tool requires Python version 2.7. The default version of Python installed on MacOS X is 2.6; you'll need to use Python from MacPorts if you'd like to run the tool on MacOS X.

- 1
- 1

- 389,263
- 172
- 990
- 904
-
Do you know how I can use it? – Wojciech Bednarski Dec 15 '11 at 10:37
-
2Usage: colorSchemeTool
-
Ah thanks! There is missing hashbang... so when I tried `./colorSchemeTool.py` I got some errors `python colorSchemeTool.py` works fine – Wojciech Bednarski Dec 15 '11 at 12:47
-
Can someone give a walkthrough of how to use this? Nothing is working for me. – Mark Sep 02 '13 at 08:34
-
The file convertion ran (and worked, seemingly). But when I try to import settings in Intellij 13, it says the file isnt valid :( – kornfridge Jan 07 '14 at 15:30
-
this worked fine for me, it wasn't 100% but it gave me a nice base on a theme I've done a while back for Sublime... I really didn't want to do it from scratch again. – Daniel Fanica Aug 19 '15 at 10:58