Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status Needs Review
Workspace Domino Designer
Categories LotusScript
Created by Guest
Created on Sep 2, 2025

Lotusscript formating

"Select Case" statement indentation is not consistent in the eclipse based editor (agent, lotusscript library) Example code:

Function selectcaseindent


Dim caseIndent As String

'logic
If True Then
Select Case caseIndent
Case "one":
Print 1
Case "two":
Print 2
End Select
End If

'loop
Do
If True Then
Select Case caseIndent
Case "one":
Print 1
Case "two":
Print 2
End Select
End if
Loop

End Function


line 12 and 23 "End select" automatic indent level is same depth as line "If True Then".
Same function in the C-based editor (like form buttons, form scripts... ) "End Select" indent depth is same as line "Select Case caseIndent" in those cases. C-editor seams to have better result for automatic indentation in this specific case. Can we have same nesting for eclipse based LS editor?

  • Attach files