有没有办法编辑Atom的自动完成功能,以便自动完成不同的属性?
目前我可以输入'模板'并自动完成
<template id=""></template>
我希望自动完成
<template name=""></template>
如果某个地方有文件可能我可以编辑?
答案 0 :(得分:1)
一种可能的解决方案是定义您自己的snippet:
File
&gt; Open your snippets
添加以下内容:
'.source.js':
'tmpl':
'prefix': 'Template Trigger'
'body': '<template name=""></template>'
您可能希望customize the scope满足您的要求。