-
Notifications
You must be signed in to change notification settings - Fork 31.3k
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
Bug with auto-indent rule: "onEnterRules" + "indentOutdent" + "AppendText" do not insert indentation and string at the END as expected. #244880
Comments
Labels:
|
I would almost just recommend defining you can define an empty |
Ohhhh. It looks like a good idea. Thank you very much. I'll go and try to implement your approach. upd: And yet, even though your solution (brackets/pairs) is similar to what I was talking about, it's still not quite the same. With your solution, the "end" keyword is inserted immediately after entering the first keyword of the pair. And + you also need to press "Enter" so that the indent level is increased on the next line, and the "end" keyword is transferred to the second line. After that, you need to go back to the line above to add the line with the first keyword of the pair. Or after the "end" keyword automatically appears, you need to add a line to the left of it. Press "Enter" and the indentation will be done, and the "end" will be moved to its proper place. Users also need the opportunity to safely write a line with "if" / "for" / "while", etc. After that, the user switches to a new line, and the IDE should automatically increase the indent level and immediately insert the end of the block in the form of the "end" keyword on the line below. The auto-indentation mechanism for parentheses is well suited specifically for parentheses. But for Lua/Pascal-style code block keywords, this mechanism is worse suited. Sorry for the unnecessary details and particulars. It's just that the coding flow consists entirely of such details. This whole problem wouldn't have happened if there hadn't been a bug, and the "indentOutdent" + "AppendText" mechanism worked as expected. I hope the developers will fix the "indentOutdent" + "AppendText" mechanism. My knowledge of programming is still far from fixing such problems. "appendText. A string that will be appended after the new line and after the indentation." |
By the way, I also found this buggy behavior with “indentOutdent” + “AppendText”. If there is a line with one of the listed keywords from “beforeText”, and on the next lines press “Tab”, then the indentation is not inserted, but the line specified in “AppendText” (“end”) is inserted. If you press “Tab” on the lines after the word “end”, then the behavior is normal - indents are inserted as usual. Likewise, on lines after the keyword from “beforeText”, and before the keyword “end”. If there are spaces on a line, and if you press “Tab” on such a line, the line with spaces is replaced by the keyword “end”. But other characters and text are not replaced by Tab to keyword “end”. And if you press “Tab” on the line where there is a keyword from “beforeText”, then the behavior I described in the first post works. And by the way, it's funny that if you pass an empty string to "AppendText", then it behaves like just "indentOutdent". That is, the indentation on the first line does not break. bandicam.2025-03-29.20-45-29-490.mp4And is this really not a bug???????????????????? |
The advice with the brackets is not bad, but I found a better option. "autoClosingPairs" + "indentOutdent" works better + no problem with colors. bandicam.2025-03-30.01-18-37-722.mp4But it would be much better to just fix "indentOutdent" + "AppendText". |
2nd vscode/src/vs/editor/common/languages/enterAction.ts Lines 40 to 52 in 52eae26
@aiday-mar description is misleading nowhere does it state that the both descriptions claim the 1st line shall be indented and the |
I'm making Syntax Highlight for the microScript language for microStudio. Not a Semantic Highlight. The syntax of this language is similar to Lua/Pascal. The end of the code block / indent level is indicated by the keyword "end".
The "Language Configuration Guide" says:
"appendText. A string that will be appended after the new line and after the indentation."
In theory, AppendText should add string after the "indent" stage. But it doesn't work as described with indentOutdent.
Therefore, I wanted to make an automatic increase in the indent level, and an automatic insertion of the "end" keyword at the end of the block. But there is a problem with "onEnterRules" + "indentOutdent" + "AppendText". It doesn't work as expected.
Here is an example. That's my rule.:
"onEnterRules": [
{
"beforeText": "\s*(?:if|elsif|else|while|for)\s*.*",
"action": {
"indent": "indentOutdent",
"appendText": "end"
}
}
]
Here is an example of a situation where it should work:

Here's what should happen when you press the "Enter" button:

But for some reason, when pressing "Enter", this rule works like this:

For some reason, when using "onEnterRules" + "indentOutdent" + "AppendText", after pressing "Enter":
Or the indent level is not inserted at all, but the "end" keyword is simply inserted instead.
I found this bug only for the rule (“indent”: “indentOutdent”). The rule (“indent”: “indent”) does not have this bug. For the rule (“indent”: “indent”), the indent level is simply incremented on a new line. And after that, the string is added.
Here's an example of how (“indent”: “indent”) + “AppendText” works:
Quite a few languages use this approach to designate “code blocks” / “indent levels”. Automatic insertion of such constructions as keyword “end” of a code block, in such languages, unexpectedly and surprisingly increase coding comfort. So I would like this wonderful mechanism to work without such embarrassing surprises.
p.s.: I don't get it, I'm not allowed to delete bug_report_template? What? This strange prohibition is very confusing.
p.p.s.: Ahhh, bug_report_template is hidden in the final message. It's clear now.
Does this issue occur when all extensions are disabled?: Yes
The text was updated successfully, but these errors were encountered: