Skip to content

Bug: Set values are not aligned when the first element is a vector, map, etc. #189

@rap1ds

Description

@rap1ds

Set values are not aligned when the first element is a vector, map, etc.

Example, set of numbers (works as expected):

Before:

#{1
  2
  3
  4}

After:

#{1
  2
  3
  4}

Example, set of vectors (unexpected, values are not aligned):

Before:

#{[1]
  [2]
  [3]
  [4]}

After:

#{[1]
 [2]
 [3]
 [4]}

Example, mixed, first element is a number (works as expected):

Before:

#{1
  [2]
  3
  [4]
  5}

After:

#{1
  [2]
  3
  [4]
  5}

Example, mixed, first element is a vector (unexpected):

Before:

#{[1]
  2
  [3]
  4
  [5]}

After:

#{[1]
 2
 [3]
 4
 [5]}

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't workingv1 blockerRequired for a v1.0.0 release

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions