From a995d4aabb794bd60028537ecb41ca7f2c738e65 Mon Sep 17 00:00:00 2001 From: Tim Pope Date: Sun, 16 Oct 2011 16:22:24 -0400 Subject: [PATCH] Fix indent after base and input tags Closes #25. --- indent/haml.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indent/haml.vim b/indent/haml.vim index 58c0307..710aefc 100644 --- a/indent/haml.vim +++ b/indent/haml.vim @@ -23,7 +23,7 @@ let s:attributes = '\%({.\{-\}}\|\[.\{-\}\]\)' let s:tag = '\%([%.#][[:alnum:]_-]\+\|'.s:attributes.'\)*[<>]*' if !exists('g:haml_self_closing_tags') - let g:haml_self_closing_tags = 'meta|link|img|hr|br' + let g:haml_self_closing_tags = 'base|link|meta|br|hr|img|input' endif function! GetHamlIndent()