proglog

主にプログラミングに関する断片的メモ

html-helper-modeとcolor-theme

html-helper-mode(rev.3.8)、coor-theme(v.6.6.0)。
この二つを同時に使うと、どうもhtml-helper-modeでfont-lockが上手く効かない感じ。
M-x color-theme-printで書き出したりなんか色々やって、.emacsに、

(setq html-helper-bold-face t)
(setq html-helper-mode-uses-bold-italic t)
(setq html-tag-face t)
(setq html-helper-builtin-face t)
(setq html-helper-tag-face t)
(setq html-helper-underline-face t)
(setq html-tag-face t)
(add-hook 'html-helper-mode-hook '(lambda () (font-lock-mode 1)))

を加えたら、なんか効くようになった感じ。
偶然か、意味があるのかは不明。
テーマによるとか?

あと、html-helper-modeのL959の

("<br>\n"))

("<br />\n"))

に変更。
しばらく試す。