Closed xh3b4sd closed 8 years ago
Ugh sorry.
This is probably related to related to change for https://github.com/client9/misspell/issues/59
does find . -not -path "./.git/*" -not -path "./.workspace/*"
return .
(the current directory?) ?
this might work for you:
find . -type f -not -path "./.workspace/*" | xargs misspell
FYI -- -not -path "./.git/*" is not needed. Misspell ignores them automatically.
does
find . -not -path "./.git/*" -not -path "./.workspace/*"
return
.
(the current directory?) ?
Yes it does. It is the very first result this find command returns.
Using -type f
in my find
command does the trick for me. It looks like the .
in my find command caused some kind of unwanted recursion. I am fine with closing this one.
good... I will make a -no-recurse
option as well as some other options shortly.
When I currently use
misspell
the following happens.I have
misspell
currently integrated into one of my projects and right now it is not usable because of the described behaviour.