xojo-format-code
xojo-format-code copied to clipboard
Track current column and wrap long lines where able
For example:
If ageOfPerson > 18 And countryHasMilitary = True And militaryAge = 18 And person.WantsToJoinMilitary = True Then
Should become something like:
If ageOfPerson > 18 And countryHasMilitary = True And _
militaryAge = 18 And person.WantsToJoinMilitary = True Then