Emmetで閉じタグにコメントを前にも入れる方法
HTML、CSSを書くときはCoda2を愛用していましたが「Sublime Text 2がイケてるよ!」との声をよく聞くので、Sublime Text 2を入れてみました。
んで、早速使っていたんですが、閉じタグにコメントを付けようと↓の状態でtabを押したら、
↓のようになるじゃないですか。当たり前ではあるのですが、
僕は↓のように前にもコメントがつかないと嫌なんです。
これは嫌だ。直そう。
閉じタグの前にコメントが入るようにする方法
まずは、下記のファイルを開きます。
/ライブラリ/Application Support/Sublime Text/Packages/Emmet/emmet/emmet-app.js
12020行目付近の↓の記述を
prefs.define('filter.commentBefore', '', 'A definition of comment that should be placed <i>before</i> matched ' + 'element when <code>comment</code> filter is applied. ' + 'For more info, read description of <code>filter.commentAfter</code> ' + 'property');
↓のように変更します。
prefs.define('filter.commentBefore', 'n<!-- <%= attr("id", "#") %><%= attr("class", ".") %> -->n', 'A definition of comment that should be placed <i>before</i> matched ' + 'element when <code>comment</code> filter is applied. ' + 'For more info, read description of <code>filter.commentAfter</code> ' + 'property');
保存したら、Sublime Text 2を再起動。
改めて試してみると、
やった。できたー。