Home Forums NexJ Studio Tools Ctrl-Shift-F May Absorb Code Into a Comment

Viewing 1 reply thread
  • Author
    Posts
    • #9550
      Louis PaceLouis Pace
      Participant

      We discovered a scenario in which using Ctrl-Shift-F to format code causes some of the code to be absorbed into a comment.

      ; Before formatting
      (let
      ; It is not safe to put a comment here.
      ((value1 “This is”) (value2 “a formatting test.”))
      (format “{0} {1}” value1 value2)
      )

      ; After formatting
      (let
      ; It is not safe to put a comment here. ((value1 “This is”) (value2 “a formatting test.”))
      (format “{0} {1}” value1 value2)
      )

       

      0
    • #9586
      Clayton ChowClayton Chow
      Participant

      Hi Louis,

      Thank you for the catching that bug.

      It has been logged and we hope to have it resolved in the next framework build.

      0
Viewing 1 reply thread
  • You must be logged in to reply to this topic.