How to set JSX files default to Babel text highlighting in sublime

前端 未结 2 1184
予麋鹿
予麋鹿 2021-02-05 04:15

I have a babel text highlighting that i added in my sublime. However every time I open a new react project it defaults to javascript text highlighting then i have to reset each

2条回答
  •  一向
    一向 (楼主)
    2021-02-05 04:29

    The syntax that Sublime selects is based primarily on the extension that the file has.

    You can select View > Syntax > Open all with current extension as... from the menu while you have such a file open to tell Sublime what syntax you want it to use for any particular extension.

    If you sometimes use regular JavaScript as well, you'll experience your current problem in reverse; you will have to manually swap the syntax back to JavaScript.

    Either way, the Project Specific Syntax Settings package may also be useful in this case if you use projects. It will allow you to configure per project what you want the syntax for different files to be.

提交回复
热议问题