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

Words in Scaladoc are truncated unexpectedly when running Scalafmt #3129

Closed
Atry opened this issue Feb 18, 2022 · 1 comment · Fixed by #3150
Closed

Words in Scaladoc are truncated unexpectedly when running Scalafmt #3129

Atry opened this issue Feb 18, 2022 · 1 comment · Fixed by #3150
Assignees

Comments

@Atry
Copy link

Atry commented Feb 18, 2022

This template is a guideline, not a strict requirement.

  • Version: 3.4.2
  • Integration: VSCode
  • Configuration:
runner.dialect = scala3
version = "3.4.2"
maxColumn = 80
align.inInterpolation = true
newlines.inInterpolation = oneline

Steps

Given code like this:

/** Title
  * @example
  *   {{{
  *   println("example")
  *some.example(foo)
  *   }}}
  */
def foo = ()

When I run scalafmt from VSCode

Problem

Scalafmt formats code like this:

/** Title
  * @example
  *   {{{
  *   println("example")
  *   e.example(foo)
  *   }}}
  */
def foo = ()

Expectation

I would like the formatted output to look like this:

/** Title
  * @example
  *   {{{
  *   println("example")
  *   some.example(foo)
  *   }}}
  */
def foo = ()
@kitbellew kitbellew transferred this issue from scalameta/scalafmt Feb 18, 2022
@kitbellew kitbellew transferred this issue from scalameta/scalameta Feb 19, 2022
@kitbellew
Copy link
Collaborator

@dos65 looks like a regression in #3084.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants