In regular mode codespell shows what changed:
foo.h:63: Creats ==> Creates
but with -w you only see
It would be nice if we could also see inline what changes were made:
FIXED: foo.h Creats==>Creates
There is the --summary option, but that doesn't play nice when codespell is run in parallel (such as through pre-commmit), because multiple summaries are printed:
FIXED: foo.h
FIXED: bar.h
-------8<-------
SUMMARY:
creats 1
...
FIXED: baz.h
-------8<-------
SUMMARY:
aswdasd 1
(note that the summaries are also jumbled as processes finish, not all at the bottom)
In regular mode
codespellshows what changed:but with
-wyou only seeIt would be nice if we could also see inline what changes were made:
There is the
--summaryoption, but that doesn't play nice whencodespellis run in parallel (such as throughpre-commmit), because multiple summaries are printed:(note that the summaries are also jumbled as processes finish, not all at the bottom)