How to use custom theme plugin with Webstorm and Pycharm
Answered
I followed the documentation and was able to create a custom theme jar file that works with Intellij. However in Webstorm and Pycharm I can install the plugin but it doesn't show up under Preferences > Appearance > Theme:
Any ideas where I might be going wrong?
Thanks
Please sign in to leave a comment.
Did you mark the plugin to be compatible with all IDEs? http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html?
Adding "<depends>
com.intellij.modules.platform</depends>" in plugin.xml should do the trick.That works perfect! Thanks for your help.