Akuli

Results 359 comments of Akuli
trafficstars

Could you? :) I will happily accept a PR that fixes stuff, but won't have time/motivation to do it myself any time soon.

I started working on this. Apparently zig-clap doesn't support 0.11 yet, which is not surprising, since 0.11 has only been out for a week. Maybe I will first try to...

I will accept a PR updating to 0.11.0 or 0.12.0.

Thanks for reminding me about this project by closing your PR (that sent a notification to my email). I have now updated the project to Zig 0.13.0.

Feel free to make a curses wrapper library based on this project, and if you want, a pull request that changes this project to use it :)

I am no longer interested in adding a library as a dependency, because it means I cannot upgrade this project to newer Zig version if the library doesn't. That said,...

Presumably all non-`int` return types should be a union with `Literal[1]`. No matter what type the sequence elements are, it is possible to get the integer 1 with an empty...

I would look at [tkinter's source code](https://github.com/python/cpython/blob/main/Lib/tkinter/filedialog.py). It calls Tcl commands (like everything else in tkinter), in this case `tk_getOpenFile`, `tk_getSaveFile` and `tk_chooseDirectory`. Here are their manual pages that explain...

I'm getting the impression that most usages of the old `SupportsGetItem` would be converted to use the new `SupportsGetItem` (that is, they don't need `__contains__`). If so, then why don't...