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
I would like to adjust the indentation inside begin...end blocks so that they behave the same as (...) blocks. For example, if I write
begin
end
(
)
if condition then ( do_this (); do_that (); do_the_other () )
then the body of the if-expression is indented by one more level than the if-expression itself. But if I write the equivalent
if
if condition then begin do_this (); do_that (); do_the_other () end
then the body of the if-expression is indented twice -- once for entering the branch, and once for being inside a begin...end block.
Could there be an option in Tuareg to make my second code example be indented as follows?
Thanks!
The text was updated successfully, but these errors were encountered:
Related to #69 (comment)
Sorry, something went wrong.
No branches or pull requests
I would like to adjust the indentation inside
begin
...end
blocks so that they behave the same as(
...)
blocks. For example, if I writethen the body of the
if
-expression is indented by one more level than theif
-expression itself. But if I write the equivalentthen the body of the
if
-expression is indented twice -- once for entering the branch, and once for being inside abegin
...end
block.Could there be an option in Tuareg to make my second code example be indented as follows?
Thanks!
The text was updated successfully, but these errors were encountered: