toggleComment for slim

This commit is contained in:
mattn
2012-05-30 21:12:34 +09:00
parent 0330ce39b4
commit a1731c718d
2 changed files with 22 additions and 11 deletions

View File

@@ -105,5 +105,11 @@ function! zencoding#lang#slim#parseTag(tag)
endfunction
function! zencoding#lang#slim#toggleComment()
" TODO
let line = getline('.')
let space = matchstr(line, '^\s*')
if line =~ '^\s*/'
call setline('.', space . line[len(space)+1:])
elseif line =~ '^\s*[a-z]'
call setline('.', space . '/' . line[len(space):])
endif
endfunction