intellij-solidity / intellij-solidity

Solidity plugin for IntelliJ

Home Page:https://plugins.jetbrains.com/plugin/9475-intellij-solidity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Alignment of expressions with ternary operator

dvpublic opened this issue · comments

alignment of expressions using the ternary operator is incorrect.

    uint a = b
      ? c
      : d
        ? e
        : f;

is alligned as

    uint a = b
    ? c
    : d
    ? e
    : f;