rx
rx
aka: being able to access a nested item via an xpath-esque syntax ``` >>> from addict import Dict >>> a = Dict() >>> a.b.c = 10 >>> a.b.d = 20...
The `#alias` feature is really neat and I had an idea on how to expand it. #alias json This would allow for defining `json` snippets which are commonly used. For...
**Bug report checklist:** [x] The language-mcfunction extension only provides syntax highlighting. Have you confirmed that your issue is with the syntax highlighting, and **not** other features such as squiggly underlines,...
Essentially, a port of [pipx inject](https://pypa.github.io/pipx/docs/#pipx-inject) for `rye`. It's one feature that when I do need it, it's extremely helpful to have. It does slightly alter the purpose of `install`,...
In [Minecraft 1.20.2](https://minecraft.wiki/w/Java_Edition_1.20.2), a new grammar feature was added: macros. These allow for lines to start with `$` and macro substitutions to be performed within the line via `$()`. They...
Fixes #21 !
You need a `py.typed` file to indicate to pyright and other type checkers that the library is typed: https://github.com/microsoft/pyright/blob/main/docs/typed-libraries.md#library-interface Also, an `__all__` would be very nice, even if this is...
`ResourceGenerator` is a sugar-y wrapper around `ctx.generate`. I think the `_generator` field is fine, but it might be alright to just have a `generator` or `generate` field or property without...
I'm replacing the grammar for `mcfunction` (introduced in #4425 by @Arcensoth) from `language-mcfunction` to `syntax-mcfunction`. ## Description `syntax-mcfunction` is a **new** grammar written from scratch to support the newer features...
When loading a pack with overlays in 1.21, the overlays will output older resource names (`functions` instead of `function`). ## Notes Likely a consequence of this code snippet: https://github.com/mcbeet/beet/blob/ba4a36283f28b6477f4321023d571e5f9345c20b/beet/library/base.py#L823-L826 When...