Guest User

Untitled

a guest
May 23rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. (defun my-html-mode-hook ()
  2. "Switch to `django-html-mumamo-mode' if Django template was opened."
  3. (save-excursion
  4. (if (or (search-forward "{%" nil t)
  5. (search-forward "{{" nil t))
  6. (django-html-mumamo-mode))))
  7.  
  8. (add-hook 'nxhtml-mumamo-mode-hook 'my-html-mode-hook)
Add Comment
Please, Sign In to add comment