vine-default-yahtml.el 894 B

12345678910111213141516171819202122232425262728
  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;; -*- coding: utf-8-unix -*-
  3. ;; FSF Emacs 23 用 Vine Linux YaHtml 設定
  4. ;; Munehiro Yamamoto <munepi@vinelinux.org>
  5. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  7. ;; YaHtml-mode: provided by YaTeX
  8. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  9. (autoload 'yahtml-mode "yahtml" "Yet Another HTML mode" t)
  10. (setq auto-mode-alist
  11. (cons (cons "\\.html$" 'yahtml-mode) auto-mode-alist))
  12. ;; 自動改行を無効
  13. (add-hook 'yahtml-mode-hook
  14. '(lambda () (setq auto-fill-function nil)))
  15. (setq yahtml-www-browser "firefox")
  16. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  17. (provide 'vine-default-yahtml)
  18. ;; Local Variables:
  19. ;; mode: emacs-lisp
  20. ;; End: