Trap
Trap

Reputation: 12372

Is there a way to force Visual Studio 2008 (or below) to use a spellchecker for comments?

I'm not sure if this can be done at all, but it'd certainly make my life easier. I was wondering if maybe the MS spellchecker could be used as a plug-in for other applications... or something like that.

Thanks.

Upvotes: 5

Views: 261

Answers (5)

JesperE
JesperE

Reputation: 64404

I don't know about Visual Studio, but both Eclipse and Emacs have support for spellchecking inside comments. I usually have it off, because it too often gets in the way and complains about things like variable names, but then I don't really need a spellchecker (most of the time).

Upvotes: 1

Dirk Vollmar
Dirk Vollmar

Reputation: 176169

There is a tool for automatically correcting typical typos everywhere you type:

AutoHotkey and the AutoCorrect for English Script

Upvotes: 0

dommer
dommer

Reputation: 19810

You can do it via this free add-in.

Newer post

Upvotes: 3

Andrew Grant
Andrew Grant

Reputation: 58786

Visual Assist from Whole Tomato comes with a Spell Checker, along with many other wondrous productivity enhancing features - if you're using Visual Studio without Visual Assist you're really missing out :)

Upvotes: 2

Jason Irwin
Jason Irwin

Reputation: 2045

You could use FXCop and write a custom rule to spellcheck (link) your comments

Upvotes: 1

Related Questions