Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spell checker for comments, strings, maybe more

I am looking for a spell checker for c++ source code. Unfortunately all I can find is Visual Studio specific. I would like something which works on Linux.

Edit:

Ultimately I want to automate it in some way. I am not very proficient in spell checking, but what I am thinking of is a not-interactive console tool which prints error messages, or something like that.

Personally I use vim, but not everyone on the project does of course.

Currently we are using svn so it is possible to integrate it into the pre-commit-hook maybe? Don't you guys do something similar?

like image 956
Ronny Brendel Avatar asked Aug 17 '09 18:08

Ronny Brendel


2 Answers

Eclipse (Java based so will do mac, linux etc.) has spellcheckers built in. With the CDT plugin you can edit and build C++ code.

like image 117
Smalltown2k Avatar answered Sep 30 '22 06:09

Smalltown2k


Vim also supports spell checking.

See the other question for more.

like image 22
Kristof Provost Avatar answered Sep 30 '22 05:09

Kristof Provost