Atom 是否支持 CSS 个片段
Does Atom support CSS snippets
我能够在 Atom 编辑器中添加 JavaScript 个片段,但无法添加 CSS 个片段。有没有办法在 Atom 中添加 CSS 片段?
#js this works fine
".source.js":
"getElementById":
"prefix": "geid"
"body": "documnet.getElementById()"
#css this does not work
".source.css":
"blue background":
"prefix": "bgblue"
"body": " background-color: blue "
我刚刚完全按照您发布的方式进行了尝试,它对我有用。
确保您的 Atom 已完全更新,并确保您尝试在其中使用代码段的文档使用适当的 language/grammar。
我能够在 Atom 编辑器中添加 JavaScript 个片段,但无法添加 CSS 个片段。有没有办法在 Atom 中添加 CSS 片段?
#js this works fine
".source.js":
"getElementById":
"prefix": "geid"
"body": "documnet.getElementById()"
#css this does not work
".source.css":
"blue background":
"prefix": "bgblue"
"body": " background-color: blue "
我刚刚完全按照您发布的方式进行了尝试,它对我有用。
确保您的 Atom 已完全更新,并确保您尝试在其中使用代码段的文档使用适当的 language/grammar。