I have a similar problem. I haven't completely solved it yet, but I have discovered some interesting findings. Maybe this will help someone. I'm glad you found the cause in editor.autoIndent. But it still doesn't solve the problem for me. So, I'll leave the information here. In my case, the âindentNextLinePatternâ is not working.
1 - It is strange that you expect a single âincreaseIndentPatternâ to work. My experiments and reading the information showed that it doesn't work alone. It needs a pair of âdecreaseIndentPatternâ to work. Even stranger is that you wrote âThen I discovered that I had âeditor.autoIndentâ in the settings.json file: ânoneâ, which was the problem.â - So just by enabling âeditor.autoIndentâ, you got the single âincreaseIndentPatternâ rule working? Without its âdecreaseIndentPatternâ pair? That's very strange.
2 - Expressions like âif (3 > 2) {â have no meaning here. The thing is that VS Code automatically adds indents if you press âenterâ after an opening bracket. This works even if no separate automatic indentation rule is defined for the language. It works for brackets (, [, {.
3 - That said, in my case, the âincreaseIndentPattern+decreaseIndentPatternâ and âonEnterRulesâ options work. But âindentNextLinePatternâ does not work. That's the weirdness.
4 - Neural networks help well with regex. The same Chat-GPT, Git-Hub Copilot, Perplexity, Claude. They are also good at explaining the principles and design standards of language packs. With neural nets, I was making fast progress in creating custom language highlighting. Until I got stuck with this weird problem with âindentNextLinePatternâ. All in all, I created the bulk of the highlighting in about 3 days. Polishing and working out the details took me another week or so. Without neural networks, I would have been sorting it out for at least a month. And most likely, I would have quickly abandoned it because of the complexity and intricacy of the topic. Many thanks to neural networks. I love them very much.