]> Sergey Matveev's repositories - codecomm.git/blobdiff - plugin/codecomm.vim
codecomm filetype syntax highlight
[codecomm.git] / plugin / codecomm.vim
index 00efad25d0c739e6296c3ed315137dd817999bd2..c13f3787fb0eefca3a3b8ba4d9667de6e3127043 100644 (file)
@@ -54,7 +54,7 @@ function! s:CodeComm() range
     endfor
     " Spawn a new small code commenting window nonbinded to file
     new CodeCommCommenting
-    setlocal noreadonly noswapfile buftype=acwrite
+    setlocal noreadonly noswapfile buftype=acwrite filetype=codecomm
     call append("^", ready)
     " Separate codecomm_file consolidating function, called when buffer is saved
     autocmd! BufWriteCmd CodeCommCommenting
@@ -71,9 +71,6 @@ function! s:CodeComm() range
         echohl MoreMsg | echomsg "Commented:" len(ready) "lines" | echohl None
     endfunction
     autocmd BufWriteCmd CodeCommCommenting call s:AppendCC()
-    " Simple syntax highlighting for that window
-    syntax region CCBlock start=/^-\{5}#/ end=/^-\+ >8 -\+/
-    highlight link CCBlock Statement
     normal zR
     startinsert
 endfunction