EWSoftware / VSSpellChecker

A Visual Studio spell checker editor extension that checks the spelling of comments, strings, and plain text as you type. Supports configuration and various languages.
Other
377 stars 65 forks source link

Unicode specifiers break the spell check for SQL strings #168

Closed paulhickman-a365 closed 6 years ago

paulhickman-a365 commented 6 years ago

In a SQL file, the spell checker will flag a spelling error if a string has a preceding N to indicate if it is unicode - e.g. the second string below is flagged as an error. The 3rd isn't, presumably because it mistakes it for a capital letter mid-string.

SELECT 'hello',N'hello',N'Hello'