jcowgar / xojo-format-code

Code formatter written in XojoScript for Xojo
15 stars 8 forks source link

Provide an option to control keyword case #9

Closed jcowgar closed 11 years ago

jcowgar commented 11 years ago

Some people like Title Case keywords while others Lowercase. Provide an option to control what case keywords are formatted to

The current output:

If True Then
  Dim a As New Dictionary
End If

An optional output:

if true then
  dim a as new Dictionary
end if