Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

preferSingleLine

Control whether items should be placed on single line as possible, even they’re originally on multiple lines.

Default option value is false.

This global option can be overridden by different syntax nodes:

  • flowSequence.preferSingleLine
  • flowMap.preferSingleLine

Example for false

- [1,
2,
3]

- [
    1, 2, 3
]

- {k1: v1,
    k2: v2,
    k3: v3}

- {
    k1: v1, k2: v2, k3: v3}

will be formatted as:

- [1, 2, 3]

- [
    1,
    2,
    3,
  ]

- { k1: v1, k2: v2, k3: v3 }

- {
    k1: v1,
    k2: v2,
    k3: v3,
  }

Example for true

- [1,
2,
3]

- [
    1, 2, 3
]

- {k1: v1,
    k2: v2,
    k3: v3}

- {
    k1: v1, k2: v2, k3: v3}

will be formatted as:

- [1, 2, 3]

- [1, 2, 3]

- { k1: v1, k2: v2, k3: v3 }

- { k1: v1, k2: v2, k3: v3 }