2012年12月21日金曜日

Emacs で Zen-coding


Emacs で Zen-coding

ダウンロード
rooney / zencoding
https://github.com/rooney/zencoding/

zencoding-mode.elを~/.emacs.d/site-lispに保存
mv zencoding-mode.el ~/.emacs.d/site-lisp/zencoding-mode.el

~/.emacs/init.elに以下追記


(require 'zencoding-mode)
(add-hook 'sgml-mode-hook 'zencoding-mode)
(add-hook 'html-mode-hook 'zencoding-mode)
(add-hook 'text-mode-hook 'zencoding-mode)

Ctrl+Returnで変換されるようになる

変換キーを変更する場合は以下のように、さらに追記

(define-key zencoding-mode-keymap "\C-i" 'zencoding-expand-line)

この場合の変換キーはCtrl+iになる

こまかいルールは以下のページを参照
rooney / zencoding
https://github.com/rooney/zencoding/

0 コメント: