aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2013-08-08 17:49:31 +0900
committermattn <mattn.jp@gmail.com>2013-08-08 17:49:31 +0900
commitb6e2b35291e0c3ac4d05894735a641f594ec3e36 (patch)
tree1a1985da2c321992a47fc64de6d84528f7d1394d /autoload
parent1bd840e315cedcbd66b1e8b461898271073cf717 (diff)
downloadvim-sonictemplate-b6e2b35291e0c3ac4d05894735a641f594ec3e36.tar.gz
vim-sonictemplate-b6e2b35291e0c3ac4d05894735a641f594ec3e36.tar.bz2
vim-sonictemplate-b6e2b35291e0c3ac4d05894735a641f594ec3e36.zip
Removed debug code
Diffstat (limited to 'autoload')
-rw-r--r--autoload/sonictemplate/lang/html.vim1
1 files changed, 0 insertions, 1 deletions
diff --git a/autoload/sonictemplate/lang/html.vim b/autoload/sonictemplate/lang/html.vim
index d804f54..36d20c9 100644
--- a/autoload/sonictemplate/lang/html.vim
+++ b/autoload/sonictemplate/lang/html.vim
@@ -14,7 +14,6 @@ function! sonictemplate#lang#html#guess()
let content = join(lines, "\n")
let tag = matchstr(content, '^<\zs[^> ]\+\ze.*')
let inner = substitute(matchstr(content, '^<[^>]\+>\zs.*\ze</[^>]\+>$'), '[ \t\r\n]', '', 'g')
- let g:hoge = inner
if tag == 'script'
return {
\ 'filetype': 'javascript',