itemisCREATE / solidity-ide

Solidity plugin for Eclipse
Eclipse Public License 1.0
86 stars 25 forks source link

Regarding auto-indent on pragmas #298

Closed Mazesch closed 5 years ago

Mazesch commented 5 years ago

When auto-indenting multiple pragmas, they get shoved into the same line; there is no specification on how to handle this in the Solidity Layout Guide but i suggest just leaving them like in the following code(and not merging them into the same line)

pragma solidity ^0.5.4;
pragma solidity ^0.5.4;
pragma solidity ^0.5.4;
pragma solidity ^0.5.4;
pragma solidity ^0.5.4;

contract Contract {
}