编辑Atom的autocompete

时间:2016-02-14 22:48:04

标签: html meteor attributes atom-editor

有没有办法编辑Atom的自动完成功能,以便自动完成不同的属性?

目前我可以输入'模板'并自动完成

<template id=""></template>

我希望自动完成

<template name=""></template>

如果某个地方有文件可能我可以编辑?

1 个答案:

答案 0 :(得分:1)

一种可能的解决方案是定义您自己的snippetFile&gt; Open your snippets

添加以下内容:

'.source.js':
  'tmpl':
    'prefix': 'Template Trigger'
    'body': '<template name=""></template>'

您可能希望customize the scope满足您的要求。