Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Comments Merge with Code After Formatting #163

Open
SSaulenas opened this issue Sep 2, 2024 · 1 comment
Open

Comments Merge with Code After Formatting #163

SSaulenas opened this issue Sep 2, 2024 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@SSaulenas
Copy link
Collaborator

Example this,

IF Something > 0 THEN
    cMessage = "Hello". 
             
             /* comment, */
             /* comment  */
ELSE
    cMessage = "Paka".

Becomes this:

IF Something > 0 THEN
    cMessage = "Hello". /* comment, */ /* comment  */
ELSE
    cMessage = "Paka".

Other example:

assign
    cMessage = "Hello"
    /* comment, */
    /* comment  */
    cMessage = "Hello"
    .

Becomes this:

assign
    cMessage = "Hello" /* comment, */ /* comment  */
    cMessage = "Hello"
    .
@SSaulenas SSaulenas added bug Something isn't working enhancement New feature or request labels Sep 2, 2024
@PauliusKu PauliusKu removed the enhancement New feature or request label Dec 12, 2024
@PauliusJaskutelis
Copy link
Collaborator

Still ongoing issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants