gilch

Results 164 comments of gilch

The other incompatible minor mode I noted in the OP is aggressive-indent mode `SPC t I`. This one is not quite as annoying, but it is also incompatible with parinfer's...

See https://github.com/hylang/hy/blob/master/NEWS.rst for changes. Hy 0.14 includes a `(return)` form which should help simplify the py2hy implementation somewhat. `apply` is gone; py2hy will have to use the new `#*` and...

If I do put it in `__annotations__`, maybe I should use [typing.Annotated](https://docs.python.org/3/library/typing.html?highlight=__annotations__#typing.Annotated). Not available until 3.9 though, so I'd have to upgrade Python again. Might be moot unless I'm already...

One illustration of why the current inject isn't sufficient, and why we'd need an `as-reader-macro` of some kind as a replacement, is that some objects are not pickleable. ``` #>...

Aliases already check for `_macro_` in the module name and only append the `QzHASH_` before lookup in that case. Fully-qualified reader macros could be made to work the same way....

Back when reader macros were single argument, appending a `#` to distinguish them from normal macros seemed so elegant. It seems less so now that the number of arguments can...

I don't think I'm going to be making further changes around this issue before the next release. Untangling it now is too much. Fully qualified imports are always available. The...

I wonder if I should also point this out in the docs somewhere, perhaps as part of a set of guidelines for writing macros well. On the other hand, if...

One case I've noticed this being an issue is in `->` and `->` when writing `^#`. It's currently implemented in terms of stack pops, which are mutations, and they occur...