We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
search :: Matrix [Digit] -> [Grid] search cm | not (safe pm) = [] | complete pm = [extract pm] | otherwise = concatMap search (expand1 pm) where pm = prune cm
Indenting the block above with Vip= would result with the faulty:
Vip=
Either getting rid of the guards or not separating where part into multiple lines would lead to correct behavior.
guards
where
The text was updated successfully, but these errors were encountered:
I have this issue too. When I type where after guards, I expect it to be indented to the level of the guards, but it isn't indented.
Sorry, something went wrong.
No branches or pull requests
Indenting the block above with
Vip=
would result with the faulty:Either getting rid of the
guards
or not separatingwhere
part into multiple lines would lead to correct behavior.The text was updated successfully, but these errors were encountered: