You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When spellchecking a lager project with lots of history and contributions from all over the world for the first time, I would like to confirm each change before it is written and eventually collect cases to be added to exceptions from automatic spell correction.
Therefore, an interactive flag, that adds a prompt before changes are written would be very useful for initial spell checking.
goggle, adriankumpf, fuelen, Eelinki, Bnyro and 2 more
Implementation note: while an MVS will just be conditional modifying, it'd be great if we later supported asking the user if they want to put a term in the approved-words list. We can use toml_edit to non-destructively edit the file.
Activity
epage commentedon Jan 5, 2022
Until this is implemented, a project using git can do
typos --write-changes && git add -p
and use git to interactively stage changes for commit.ninsbl commentedon Jan 5, 2022
Cool! Thanks for the swift reply and for the suggestion on the workaround! I did not know and will try!
epage commentedon Jan 5, 2022
Implementation note: while an MVS will just be conditional modifying, it'd be great if we later supported asking the user if they want to put a term in the approved-words list. We can use
toml_edit
to non-destructively edit the file.