diff --git a/after/syntax/html.vim b/after/syntax/html.vim index e75e3ef..63d7ba0 100644 --- a/after/syntax/html.vim +++ b/after/syntax/html.vim @@ -3,17 +3,9 @@ " URL: http://github.com/kchmck/vim-coffee-script " License: WTFPL -if !exists("main_syntax") - let main_syntax = 'html' -endif - " Syntax highlighting for text/coffeescript script tags unlet b:current_syntax syn include @htmlCoffeeScript syntax/coffee.vim unlet b:current_syntax syn region javaScript start=++me=s-1 contains=@htmlCoffeeScript,htmlScriptTag,@htmlPreproc let b:current_syntax = "html" - -if main_syntax == 'html' - unlet main_syntax -endif