vine-default-html-helper-mode.el 721 B

1234567891011121314151617181920212223
  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;; -*- coding: utf-8-unix -*-
  3. ;; FSF Emacs 23 用 Vine Linux html-helper-mode 設定
  4. ;; IWAI, Masaharu <iwai@alib.jp>
  5. ;; $Id$
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  8. ;; html-helper-mode の設定
  9. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  10. (autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t)
  11. (setq auto-mode-alist
  12. (append
  13. '(
  14. ("\\.html" . html-helper-mode))
  15. auto-mode-alist))
  16. (provide 'vine-default-html-helper-mode)
  17. ;; Local Variables:
  18. ;; mode: emacs-lisp
  19. ;; End: