How to provide Python syntax coloring inside Webstorm?

前端 未结 3 966
走了就别回头了
走了就别回头了 2021-02-05 02:26

I have a Python project, and I use WebStorm as my Editor. The problem is that Python\'s syntax doesn\'t get colored.

How can I display Python pages with a nice syntax?

相关标签:
3条回答
  • 2021-02-05 02:46

    Python might be missing in Preferences -> Editor -> File Types. After adding the Python, make sure to add a *.py registered pattern.

    0 讨论(0)
  • 2021-02-05 02:47

    You can use the Perl syntax which is very similar to Python.

    1. Go to Preferences => File Types
    2. Search for Perl
    3. Add *.py under Registered Patterns

    Another option is to use PyCharm, the community version is free.

    0 讨论(0)
  • 2021-02-05 02:52

    Your ONLY option in WebStorm is to use TextMate bundles support plugin with Python bundle -- it will provide syntax highlighting (no completion or syntax checking etc).

    This official article (with pictures) is for PhpStorm, but it should work the same for WebStorm as well: http://confluence.jetbrains.com/display/PhpStorm/TextMate+Bundles+in+PhpStorm

    There are several TextMate bundles available for Python: https://github.com/textmate?utf8=%E2%9C%93&q=python

    Alternative solution: migrate to PyCharm Pro -- it does all what WebStorm does + Python.


    UPDATE: 2019-06-18

    2019.2 version will come bundled with syntax highlighting for about 20 languages (all done via the aforementioned TextMate bundles plugin).

    https://blog.jetbrains.com/webstorm/2019/05/webstorm-2019-2-eap/

    In WebStorm 2019.2, we’re adding syntax highlighting for over 20 different programming languages, including PHP, Python, Ruby, and Java. It just works – no additional configuration needed.

    With this change we want to improve the experience of our users who occasionally have to look through some code written in different languages that are not supported in WebStorm. But WebStorm is still primarily an IDE for JavaScript and TypeScript developers, so we don’t plan to extend the support for these other languages beyond syntax highlighting.

    Syntax highlighting for these languages is built using TextMate grammars, and WebStorm bundles a collection of grammar file for different languages. Currently they are shipped as part of the TextMate Bundles plugin (so you can see a full list of supported languages under Preferences | Editor | TextMate Bundles), but they are going to be moved to the IntelliJ Platform soon.

    0 讨论(0)
提交回复
热议问题