Skip to content
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

Repeated reformatting of multi-line comments resulting in them moving to the right #3143

Open
heueristik opened this issue Nov 5, 2024 · 0 comments

Comments

@heueristik
Copy link

Describe the bug

  • Juvix v0.6.6-68a79bc

To Reproduce
Steps to reproduce the behavior:

Write a multiline comment in a function body, e.g.,

myfun (a : Nat) : Bool :=
  {-
  My comment.
  -}
  true;

and format the file.

  1. Formatting:
myfun (a : Nat) : Bool :=
  {-
    My comment.
    -}
  true;
  1. Formatting:
myfun (a : Nat) : Bool :=
  {-
      My comment.
      -}
  true;
  1. Formatting:
myfun (a : Nat) : Bool :=
  {-
        My comment.
        -}
  true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants