vote up 1 vote down star
1

I like that vim 7.0 supports spell checking via :set spell, and I like that it by default only checks comments and text strings in my C code. But I wanted to find a way to change the behavior so that vim will know that when I write words containing underscores, I don't want that word spell checked.

The problem is that I often will refer to variable or function names in my comments, and so right now vim thinks that each piece of text that isn't a complete correct word is a spelling error. Eg.

/* The variable proj_abc_ptr is used in function do_func_stuff' */

Most of the time, the pieces seperated by underscores are complete words, but other times they are abbreviations that I would prefer not to add to a word list. Is there any global way to tell vim to include _'s as part of the word when spell checking?

flag

1 Answer

vote up 1 vote down check

You'll need to move it into its own group. Something like this:

hi link cCommentUnderscore cComment
syn match cCommentUnderscore display '\k\+_\w\+'
syn cluster cCommentGroup add=cCommentUnderscore

In some highlighters you may need contains=@NoSpell on the end of the match line, but in C, the default is @NoSpell, so it should be fine like that.

link|flag
That works great! Thanks a lot. One comment that I will add: I originally tried putting this in my .vimrc, but it doesn't do anything there. After looking at the :syn help, I figured out that to get this syntax highlighting change to be used each time the C syntax is loaded, I needed to put these lines into a ~/.vim/after/syntax/c.vim file. After I did that, everything worked nicely. – David Aug 17 at 12:15
After using this change for a short time, I made two refinements. First, to not spell check words with _'s at the beginning or end of the word. Second, to not cause every word with an _ in it to be colored as per comments. The new line is: "syn match cCommentUnderscore display '_\k\+\|\k\+_\w*' contained" – David Aug 21 at 18:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.