Skip to content

Instantly share code, notes, and snippets.

@aaroncampos
Created October 20, 2010 03:53
Show Gist options
  • Save aaroncampos/635734 to your computer and use it in GitHub Desktop.
Save aaroncampos/635734 to your computer and use it in GitHub Desktop.
;; Code-folding for HAML mode
(add-hook 'haml-mode-hook 'hs-minor-mode)
(setq hs-special-modes-alist
(cons (list
'haml-mode "[#.%]" "\n" "/"
(lambda (arg)
(haml-forward-sexp)
(move-beginning-of-line 1))
nil) hs-special-modes-alist))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment