# HG changeset patch # User Oleksandr Gavenko # Date 1319494869 -10800 # Node ID 732e4cefb33b78936facf9ef7404348fa21e553c # Parent 079c2e27357aeed9621d82173269778f0d55a458 Add completion for 'script' and 'style' tags in html from sgml mode. diff -r 079c2e27357a -r 732e4cefb33b .emacs-my --- a/.emacs-my Mon Oct 24 02:56:48 2011 +0300 +++ b/.emacs-my Tue Oct 25 01:21:09 2011 +0300 @@ -1848,6 +1848,8 @@ (my-filter (lambda (item) (not (equal (car item) "html"))) html-tag-alist))) + (add-to-list 'html-tag-alist '("script" (\n) ("type" "text/javascript") )) + (add-to-list 'html-tag-alist '("style" (\n) ("type" "text/css") )) ))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;