1,441 questions
0
votes
0
answers
15
views
Does Visual Studio Spell Checker have a shortcut key to find next misspelled word?
I have downloaded and am using the Visual Studio Spell Checker (using VS 2022), which is quite useful. Are there shortcut keys to find the next misspelled word and to add a word to the dictionary or ...
2
votes
1
answer
112
views
How to disable spell checking in Rider
I am unable to disable spell checking in Jetbrains Rider. I feel there are 200 settings for spell checking but unchecking everything I find does not remove the useless typo-alerts. How can I disable ...
0
votes
1
answer
67
views
How can I get clang-tidy not to complain about lack of apostrophe in an identifier?
My IDE is running clang-tidy (v20) on my C++ code. I have an enum where one of the identifiers is isnt_owning. And - clang tidy complains about the typo. <sarcasm>Thanks a bunch! I'll go right ...
3
votes
0
answers
103
views
Visual Studio 2022 editorconfig exclusion.dic randomly stops working
In my solution I have an .editorconfig file with the following section:
[*.cs;*.md]
spelling_languages = en-us
spelling_checkable_types = strings, identifiers, comments
spelling_exclusion_path = ./....
1
vote
1
answer
32
views
Solr file-based spellchecking does not detect correctly spelled words
I have a working Solr v9.4.1 installation, to which I want to add file-based spellchecking.
I want to add file-based spellchecking so that I can identify search terms that are correctly spelled, even ...
0
votes
1
answer
118
views
DevExpress SpellChecker - ASP .NET Core
I am having an issue with a spellchecker I am trying to set up. The target platform for running my application is .Net Framework 4.8
First of all, I followed the Spellcheck chapter from the ASP.NET ...
3
votes
1
answer
146
views
Disable Spell Check for Shebang in Visual Studio Code
With Python primarily being used in virtual environments now, my shebang lines for python scripts can vary depending on the location of the particular virtual environment I'm working in.
This causes ...
0
votes
0
answers
30
views
How can I integrate spell checking into my Visual Studio Solution, as part of Visual Studio Pro, and Pipeline usage?
I'm having a tough time finding a solution to what seems to be a definite problem that's been solved. My team has an extensive VS solution that we want to add spell-checking too. Specifically, we'd ...
0
votes
0
answers
32
views
Adding words to a WPF spell checker
I have this WPF control inserted into a WinForms:
using System;
using System.ComponentModel;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Forms.Integration;
using System....
2
votes
1
answer
116
views
How to make codespell not report false positives in base64 strings?
I'm trying to configure codespell for a code base that uses Jupyter notebooks a lot.
Codespell throws a lot of false positives on a notebook that contains images embedded using base64 encoding. It ...
0
votes
1
answer
99
views
Visual Studio Spell Checker Remove language
Currently, I have to go through 3 menus to get to the en-GB spelling
Is there a way to remove en-US (which I don't use) from the spell checker? which I am hoping will reduce this to only 2 menus?
I ...
1
vote
0
answers
97
views
Spell Check Configuration iOS
TextFormField(
spellCheckConfiguration: SpellCheckConfiguration(
misspelledSelectionColor: Colors.red,
spellCheckService: DefaultSpellCheckService(),
),
...
0
votes
1
answer
155
views
Disable Spell check on VS 2022 for a specific file location?
I'm getting thousands of spelling errors for a decompiled bit of code in AppData... not even code in my actual source code... Does anyone know how to exclude the spell checker spamming me like crazy?
...
1
vote
0
answers
50
views
Is there a spell checker for VS Code for the OLD (1901) German spelling rules?
In general, I know how to enable spell checking in VS Code for different languages. However, I was not able so far to find a spell checker for the old German spelling rules (sometimes called 1901 ...
-1
votes
1
answer
72
views
Disable ReactJS submit button if text area has spelling errors
I am using ReactJS and created a form. I want to disable the send button if the text area in the form has spelling errors.
Spell check that I tried just underlines the spelling errors but it does not ...