1
如何更改自動完成的凌動這樣input
成爲Atom的編輯器定製自動完成/建議
<input type="text" placeholder="{cursor here}">
而不是默認的
<input type="{'button'|cursor here}" name="name" value="">
如何更改自動完成的凌動這樣input
成爲Atom的編輯器定製自動完成/建議
<input type="text" placeholder="{cursor here}">
而不是默認的
<input type="{'button'|cursor here}" name="name" value="">
自動完成你描述它被稱爲在GitHub上一個snippet Atom的術語。您可以通過覆蓋包隨Atom提供的輸入片段來更改這些內容。
用戶定義的代碼片段存儲在其中你可以去File
訪問您的Atom配置文件 - >Snippets...
,這將打開編輯器中的文件,那麼你可以粘貼在文件末尾以下
'.text.html':
'Input':
'prefix': 'input'
'body': '<input type="text" name="${1:name}">$0'
請確保在測試我們更新後的代碼片段之前保存文件,並將其作爲HTML語言選定的文檔進行測試。