-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unique list #33
base: master
Are you sure you want to change the base?
Unique list #33
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
- Similar to my comment in Solved the backslash issue #31, add a test case to
test.cram
.
c04a1f0
to
db0f8dd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few more requested after I tested this with make check
.
1d74ecd
to
97fb973
Compare
Added the `--unique-list` command line argument which enables to only see the unique errors in a report only manner. Thus, recurring not matching tokens will be lumped together as one. Also, shows the corresponding line numbers where the misspelling occurs. The `list_unique` parameter was added to `spell_check()`, `spell_check_file()` and `spell_check_token()` functions. Closes myint#24
97fb973
to
a3bc78d
Compare
@myint Done. 😄 |
The indentation is still a bit off. But I"m going approve as I suspect this Google thing will be already over the next time I get a chance to log in.
|
Added the
--list-unique
command line argument which enables to only see the unique errors in a report only manner. Thus, recurring not matching tokens will be lumped together as one. Also, shows a list of line numbers beside the token where the token was used.The list_unique parameter was added to spell_check(), spell_check_file and spell_check_token() functions.
Closes #24