Spell Checker

Бесплатно

An editor extension that checks the spelling of comments, strings, and plaintext as you type.

(58) Обзор
Visual Studio
2010
Загрузка (103 252)
09.11.2010
2.23
Просмотреть
E-mail del.icio.us Digg Facebook Reddit Slashdot Twitter Windows Live Favorites Windows Live Spaces
Добавить в избранное
Описание
Обзоры (58)
Вопросы и ответы (46)
Войдите в систему, чтобы написать обзорную рецензию
Сортировка по:

автор Mareczek3434 | мая 10 2012

Doesn't work in Microsoft Visual Studio 2010 Professional SP1. My friend has the same problem.

автор _rig | апреля 26 2012

Best extension ever for people who are not very good at smelling :-)

автор DaveGIS | марта 05 2012

автор ChrisGalley | января 24 2012

excellent extension

автор Action-man | января 08 2012

can we add the Arabic language to the dictionary.

автор Steef-Jan Wiggers | ноября 03 2011

автор AnnWroteHere | сентября 28 2011

Nice tool that is very useful. And it's free! Thanks.

автор Tom Brasino | августа 25 2011

Must have tool but very slow, IDE takes 100% CPU when working. VS2010, Win7.

автор arunsinghit | августа 19 2011

Works great for me.

автор M.Radwan | июля 15 2011

It helps me and all my team to write good comments :-) thanks

автор Charles Nadolski | июня 23 2011

This plugin works as advertised (a free spellchecker, yay!), however in Visual Studio 2010 Ultimate, it causes the editor to peg a CPU core at 100%. In turn, responsiveness from intellisense and the keyboard is quite sluggish. The version notes says the performance was fixed, but as of 2011/06/23 performance is still much to be desired.

автор cslater | июня 20 2011

Fantastic!

автор Durant Rodrigue PC | июня 18 2011

I am loving this tool... been needing this for a very long time. Already sent our an email to the team regarding this.

Very cool addition! Thanks!

автор TheBinki | июня 18 2011

Thank you very much. Having come from using other IDEs to using Visual Studio 2010, I wasted 15 minutes finding out there was no spell check in the IDE. What a bummer. Found this and it has worked great. A nice feature, is possible, would be getting it working in the Design view. While I write code, most of my time is spent designing, tweaking, etc.

Again, it works great for me.

автор Pierre-Alain Vigeant | июня 06 2011

The new version now works with a non-english OS, like French in my case. While I'm glad that it now shows the spelling error in my French translation, all my code comments are in English, which then make the spell checkers underline everything.

автор A Red Duck8 | мая 28 2011

this is a great system. For the lowlowlow price of free it is great! 4 stars

автор dotnet__coder | мая 01 2011

Very nice idea.

автор menaheme | февраля 16 2011

Wonderful, intuitive, needs perfection when using non english

автор GChoq | февраля 08 2011

My absolute most used tool. Very helpful. Good job.

автор Maxim Dolidze | февраля 08 2011

Great tool. But looks like that from time to time it is not checking words in java-doc-like comments in C#
/**
* This spel error will not be found.
*/

I know that this type of comments are not suggested by Microsoft but i get used to them. Although Visual Studio have some support for such comments. Like adding a '*' at the beggining of the new line on pressing Enter.

1 - 20 из 58 Элементы   
« Первый   < Назад   1  2  3    Далее >   Последний »
Войдите в систему, чтобы создать обсуждение


  • Spell Checking SUmmary in bottom window
    2 Posts | Последнее сообщение апреля 30, 2012
    • I was wondering if there was a way (or plan to do so in the future) to have a summary at the bottom saying all the errors of hte current document and/or project. Just like all the errors compiling or when you right click on something and choose 'find all references'.
      
    • It's technically possible to do, but I have no plans of doing it. If you are feeling adventurous, you can find the source here: https://github.com/noahric/spellchecker
      
      -Noah
  • Visual Studio 11 Support?
    2 Posts | Последнее сообщение марта 24, 2012
    • Is there any chance of getting this extension to work with Visual Studio 2011? It's currently in Beta, but I love this extension and would really like to have it installed.
    • Apologies, just noticed someone beat me too it below... renaming it to .zip, changing the version number and re-zipping it up works like a charm.
  • How to activate
    1 Posts | Последнее сообщение февраля 29, 2012
    • I installed the Spell Checker, it is visible as enabled in Tools / Extension Manager but I still can misspell my comments without getting any hint.
      [VS2010 Ultimate, English version]
  • Using Spell Checker in english over a german Visual Studio
    2 Posts | Последнее сообщение января 25, 2012
    • I'm searching for a way to change the language of Extension for Visual Studio 2010.
      
      The problem is following: I'm using the german language version of Visual Studio 2010. If I use the Spell Checker it checks the correctness in german language, while I'm coding in english. So nearly every single word is underlinded as incorrect.
      
      How can I change the checking language to english or how can I change the libary it used to check language?
    • Found the post below. Thanks! :)
      I propose to make the language configurable.
  • Change
    3 Posts | Последнее сообщение января 25, 2012
    • Is it possible to change the langue of the spell checker?
      I have to write English comments, but my spell checker only checks German.
      I’m using VS2010 Ultimate (in English).
      
      Regards
      
    • I never added a way of setting that option, so your best bet is to modify the source. Here's how another user did it:
      
      I've downloaded source (from https://github.com/NoahRic/Spellchecker) and added the line 
      
      textBox.Language = XmlLanguage.GetLanguage("en-US"); 
      
      in the SpellingTagger.CheckSpellings method; That works fine for me / in my german environment.
      thomas
    • thank you, it works perfect for me
  • Works great!
    2 Posts | Последнее сообщение января 24, 2012
    • I'd like one more option, possibly to ignore works 3 or 4 characters or less.  I often have quick foreach variable names that are 3 or fewer characters long.
      
      Thanks!
    • If you're willing to modify the source, that would be a fairly easy change to make.
      
      1) Grab https://github.com/NoahRic/Spellchecker
      2) Modify the SpellingTagger.cs:ProbablyARealWord function to exclude words of length <= 4.
      https://github.com/NoahRic/Spellchecker/blob/master/SpellChecker.Implementation/Spelling/SpellingTagger.cs#L436
      3) Rebuild the extension (in Release mode), find the .vsix in the output directory, and double-click it to install it in VS (as opposed to VS with the experimental hive, which is what you get when debugging the extension in VS).
  • Spell Checker support VS11
    2 Posts | Последнее сообщение января 24, 2012
    • Hello, any chance this can be updated to support the current VS11 developer preview? Hopefully there isn't much that needs to be done to let it work with VS11.
    • I have about 13 extensions to update for VS11 (I haven't even downloaded it yet). Assuming there aren't any actual code changes to be made, you can do it manually in the meantime:
      
      1) Download the extension
      2) Change the file extension to .zip and unzip the contents
      3) Modify the extension.vsixmanifest, adding a new entry under the SupportedProducts group:
      <SupportedProducts>
        <!-- VS10.0 is here, below it add: -->
        <VisualStudio Version="11.0">
          <Edition>Pro</Edition>
        </VisualStudio>
      </SupportedProducts>
      4) Add everything back to a .zip file, change the extension to .vsix, and double-click it
  • How to change the languaje ?
    2 Posts | Последнее сообщение января 24, 2012
    • If I want the spell check to be in Spanish, where do I configure this. Thanks :)
    • I never added a way of setting that option, so your best bet is to modify the source. Here's how another user did it:
      
      I've downloaded source (from https://github.com/NoahRic/Spellchecker) and added the line 
      
      textBox.Language = XmlLanguage.GetLanguage("en-US"); 
      
      in the SpellingTagger.CheckSpellings method; That works fine for me / in my german environment.
      thomas
  • How to select language?
    3 Posts | Последнее сообщение января 24, 2012
    • Is there an option to change the language that will be used for spell checking? Most of my comments are in English, but some are German (not my fault ;-) ), and I want to check them too without leaving Studio or switching language settings somewhere.
      
      BR, Udo
    • PS: I have a German Windows 7 and an English VS 2010, and all spell-checker suggestions are for German. However, I want to use English as language to be checked.
    • I never added a way of setting that option, so your best bet is to modify the source. Your case is special since you have a mix of languages, so this may not work terribly well for you, but it is at least an option you should know about :)
      
      Here's how another user did it:
      
      I've downloaded source (from https://github.com/NoahRic/Spellchecker) and added the line 
      
      textBox.Language = XmlLanguage.GetLanguage("en-US"); 
      
      in the SpellingTagger.CheckSpellings method; That works fine for me / in my german environment.
      thomas
  • Visual studio not responding with spell checker enabled.
    2 Posts | Последнее сообщение января 24, 2012
    • With the spell checker enabled I brought in the following text file (output from lint only much larger).  dnvenv.exe was stuck at about 25% and hung.  I finally was able to close the file, turn off the spell checker and open it back up without issue (each of the &lt etc. were a spelling error).  Is there a way to limit the extensions from how much CPU they can take?
      
      <?xml version="1.0" ?>
      <doc>
      
        While instantiating boost::property_tree::basic_ptree&lt;std::basic_string&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;,std::basic_string&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;&gt;::iterator&lt;std::basic_string&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;,std::basic_string&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;,std::less&lt;std::basic_string&lt;wchar_t,std::char_traits&lt;wchar_t&gt;,std::allocator&lt;wchar_t&gt;&gt;&gt;&gt; at File D:\dev\sapphire\marshalling\sapphire_interaction\sapphire\interaction\MessageHelper.cpp line 54
      <message><file>D:\dev\sapphire\boost_1_46_1\boost\multi_index_container.hpp</file> <line>324</line> <type>Error</type> <code>330</code> <desc>Static assertion failure: index_found</desc></message>
      </doc>
    • If you are asking if there's a setting for that somewhere, the answer is no, sorry.
      
      If you are asking, generally, if VS 2010 can do that, the answer is not really. Extensions run in the same process as Visual Studio and as first-class citizens as every other component of VS, so there's not much it can do in general to prevent badly behaved extensions.
      
      This extension uses a background thread at BelowNormal priority to do the work that is eating one of your CPU cores, so it (hopefully) shouldn't be blocking the UI thread directly. However, the work the editor does in response (drawing squiggles, placing smart tags, etc.) is most likely on the UI thread, and some of those things tend to scale super linearly with the number of items.
1 - 10 из 46 Элементы   
« Первый   < Назад   1  2  3  4  5    Далее >   Последний »