Atom-editor定制自动完成/建议

时间:2016-03-28 10:47:32

标签: autocomplete code-snippets atom-editor

如何更改Atom中的自动填充功能,以便<input type="text" placeholder="{cursor here}"> 成为

<input type="{'button'|cursor here}" name="name" value="">

而不是默认

{{1}}

1 个答案:

答案 0 :(得分:1)

您描述的自动填充在GitHub Atom的术语中称为snippet。您可以通过覆盖Atom附带的language-html包提供的输入代码段来更改这些内容。

用户定义的代码段存储在您的Atom个人资料中,您可以通过转到File - &gt;进行访问。 Snippets...,这将在编辑器中打开文件,然后您可以将以下内容粘贴到文件的末尾

'.text.html':
  'Input':
    'prefix': 'input'
    'body': '<input type="text" name="${1:name}">$0'

请确保在测试我们更新的代码段之前保存文件,该文档中包含HTML选择的语言。