Triton171
Triton171
@AceofSpades5757 good find! The issue already existed in the old version but it's a somewhat rare edge case, so that's probably why it hasn't popped up before. The latest commit...
That's interesting, the code for dedenting is pretty simple and doesn't use the indentation heuristic. If you can reproduce this, it'd probably be best to create a new issue for...
Could you provide an example where the current indentation for Scala is incorrect? I'm not familiar with the language but from a quick look it seems like Scala uses blocks...
The weird behavior with `@stop-extend` happens because you're writing an invalid indent query: Tree-Sitter doesn't allow empty alternations (for a description of the query syntax, see [their documentation](https://tree-sitter.github.io/tree-sitter/using-parsers#pattern-matching-with-queries)). Unfortunately, this...
I've found an additional issue when there are multiple nested `@extend-indented` nodes: ```python def func(): if condition: return | #
I've tried it out a bit and it seems to work great. You still need to run `cargo xtask docgen` to fix the failing check. Also, in case you have...
If you have an example of inconsistencies that are difficult to fix using the current system, it'd be interesting to see it. The current indentation system is far from perfect...
I've seen this bug too but it doesn't have anything to do with the `indent.scm` queries since those are only used to determine the indentation of a new line. I...
@paul-scott The `indent-after` idea is pretty much what I had in mind as well, just haven't gotten to implement it yet. There's a few things I have to add though:...
@mil How large is the SQLite database that one needs for routing typically? If I understand it correctly, it stores an entry for each direct connection (i.e. a service going...