javascript-如何在.babelrc文件上设置和保留语言语法类型
作者:互联网
在Atom 1.18中,每次打开编辑器时,我的.babelrc文件默认为JSON文件类型,这使语法高亮显示看起来很遥远.而且我必须继续将其更改回Babel类型.
如何修复(临时):
每次我关闭并打开.babelrc文件时,都必须重置它.
现在,我意识到这是一个很少被触及的文件,但对于了解如何针对其他文件类型修复此文件将有所帮助.
解决方法:
有一个非常具体的方法可以在config.cson中进行设置
https://discuss.atom.io/t/how-do-i-make-atom-recognize-a-file-with-extension-x-as-language-y/26539
http://flight-manual.atom.io/using-atom/sections/basic-customization/#configuring-with-cson
"*":
core:
customFileTypes:
"source.js.jsx": [
"js"
"es6"
"es"
"babel"
"babelrc"
"jsx"
]
标签:atom-editor,syntax-highlighting,javascript,babel 来源: https://codeday.me/bug/20191111/2017683.html