Fix auto completion being active within Doxygen comment blocks.

This commit is contained in:
Ton van den Heuvel 2013-02-15 11:18:55 +01:00
parent 82fe1b6c57
commit c3a6ac270b

View File

@ -333,7 +333,7 @@ endfunction
function! s:InsideCommentOrString()
" Has to be col('.') -1 because col('.') doesn't exist at this point. We are
" in insert mode when this func is called.
let syntax_group = synIDattr( synID( line( '.' ), col( '.' ) - 1, 1 ), 'name')
let syntax_group = synIDattr( synIDtrans( synID( line( '.' ), col( '.' ) - 1, 1 ) ), 'name')
if stridx(syntax_group, 'Comment') > -1 || stridx(syntax_group, 'String') > -1
return 1
endif