- Edit > Format > Indent: Ctrl-I: to re-indent code
- Refactor > Remove unused imports
for example something which
- put a space before and after each =
- put a space before and after each &
- put a space after each comma separator in list
- ...
My goal is when I have a code like :
Code: Select all
private Sub Init(var as String,var2 as Double, var3 as String )
' Your recording specific initialization code goes here.
edQuestionsdetail=New QuestionsDetail()
edQuestionsdetail.sReference = varReference
edQuestionsdetail.sLevel = varLevel &"string" & "yy"
End Sub
Code: Select all
private Sub Init(var as String, var2 as Double, var3 as String)
' Your recording specific initialization code goes here.
edQuestionsdetail = New QuestionsDetail()
edQuestionsdetail.sReference = varReference
edQuestionsdetail.sLevel = varLevel & "string" & "yy"
End Sub