0
I Use This!
Inactive

Commits : Listings

Analyzed 4 days ago. based on code collected 4 days ago.
May 27, 2023 — May 27, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Modify the spelling tagger to: More... about 14 years ago
Modify the spelling dictionary service to have a shared, static GlobalDictionary that is basically in charge of the dictionary file. Without this, multiple buffers "own" the dictionary file and write to it (which seems to work), but ignoring a word in one file doesn't affect other files. More... about 14 years ago
Modify the CommentTextTagger to send out tags changed events when the underlying classifier sends out change events. Without this, inserting or removing a multi-line comment only affects the line the comment was inserted on, and not the entire commented in/out region. More... about 14 years ago
Bumped to version 2.14. More... about 14 years ago
Add a few new cases to the list of words to ignore when spell checking: More... about 14 years ago
Fix two issues. More... about 14 years ago
Added .pkgdef to make sure the extension's installed directory is on VS's assembly probing path. This fixes bugs where the definition assembly is occasionally not loaded in time for TagType metadata reference to correct succeed. Also, as a possible additional (though likely unnecessary) workaround, changed the SpellingTagger to use MisspellingTag instead of IMisspellingTag as the TagType. It shouldn't change anything for consumers eating IMisspellingTag, but keeps it from directly referencing IMisspellingTag. More... about 14 years ago
Screwed up the version numbers with 2.11 way back when :( Have to bump to 2.12 so the VSGallery users see the update. More... about 14 years ago
Changed project file for impl to make sure to include the definition assembly in the VSIX. More... about 14 years ago
Ignore words with underlines in them. More... about 14 years ago
Changing to version 2.3, so we don't accidentally skip one. More... about 14 years ago
Added Html text tagger to tag portions of HTML files that aren't tagged as anything else (an attempt to find the plaintext portions of the file). Modified the squiggle and smart tagger to use "any" content type, so that they will be loaded for HTML/ASP.NET files (the top buffer in those cases has a projection content type, which will not match "text"). More... about 14 years ago
Fixed spelling tagger to create a tag aggregator of INaturalTextTag instead of the (internal) NaturalTextTag, which keeps it from using natural text tags declared by other extensions. More... about 14 years ago
Fixed mixed types in the natural text tagger. More... about 14 years ago
Added a new behavior to the dictionary changed event args: if the word is null, it means the dictionary has changed entirely, and clients should reparse everything from the dictionary. More... about 14 years ago
Refactored into two projects: implementation and definition. It should be possible now for other extensions to include the definition assembly in their own extensions and provide either natural text taggers for custom file formats or buffer-specific dictionaries, which are now aggregated by the default dictionary service. More... about 14 years ago
Split out "Ignore all" and "Add to dictionary" into separate smart tag actions. Bumped to version 2.2. More... about 14 years ago
Ensure spelling tagger background thread is operating on a copy of the current misspellings. More... over 14 years ago
Bumped version to 2.1 (seems like version number got screwed up at some point :-/). More... over 14 years ago
Fix bug where a span that *was* natural text and is no longer has spelling errors that never go away. This was happening because the change logic was: More... over 14 years ago
Added empty (ick) try/catch around the CheckSpellings background thread, to protect against the thread running during shutdown and throwing exceptions. More... over 14 years ago
Remove bug workaround from Beta 2, now fixed in the RC. More... over 14 years ago
Removed pkgdef file (no longer required in the RC/RTM). More... over 14 years ago
Updated for RC/RTM, bumped version to 2.0. More... over 14 years ago
Added .gitignore. More... over 14 years ago
Fixed deadlock issue, bumped version number to 1.1. More... over 14 years ago
Made sure ms-pl.txt is put in the vsix. More... over 14 years ago
Changed priority of background thread to BelowNormal. More... over 14 years ago
Renamed WpfSpellchecker to SpellingDictionaryService. More... over 14 years ago
Moved squiggle tagger and added a clarification to a comment about a bug in Beta 2. More... over 14 years ago