Is there a setting to prevent RStyle to make variable names lowercase?

 

Using RStyle in RBase Editor, the variable names are set to LowerCase or
UpperCase running RStyle.

 

For one code I wouldn't like that. Variable names should be let as tipped
in.

 

-- Example before

SEt vAR vThisIsTheTest TexT = 'Hello'

IF (.vThisIsTheTest = .vOtherVariable) Then

  write 'identical'

endif

RET

 

-- Should be transformed by RStyle to

SET VAR vThisIsTheTest TEXT = 'Hello'

IF (.vThisIsTheTest = .vOtherVariable) THEN

  WRITE 'identical'

ENDIF

RETURN

 

-- but is transformed to 

SET VAR vthisisthetest TEXT = 'Hello'

IF (.vthisisthetest = .vothervariable) THEN

  WRITE 'identical'

ELSE

  WRITE 'not identical'

ENDIF

RETURN

 

It seems I don't' see the tree (setting) within the forest.

TIA

Adrian

Reply via email to