taconi
taconi
I added `requires-python=">=3.7"` in `pyproject.toml` to make the required version explicit
Perhaps [pep 484](https://peps.python.org/pep-0484/) is good documentation on type hinting, and as the application is a CLI, it may not be necessary to inform in the project documentation how to use...
Perhaps can be added a parameter `--fail-limit`. I can take this task.
Hey 👋 Is there anything missing for this PR to be merged?
Just install `wheel` and you probably won't have any more errors during the installation, I don't know if this PR is still valid since playsound supports python 2 and I...
1 voto
The [prettier plugin](https://github.com/gamemaker1/micro-plugin-prettier) uses the [prettier tool](https://prettier.io/) and I know that it formats markdown files, maybe this plugin with some config help to solve this. The other [plugin](https://github.com/sebkolind/micro-prettier) with the...
I can add it to the buffer module to be used with `import('micro/buffer')` like that: ```lua local buffer = import('micro/buffer') function complete(buf) local input, argstart = buffer.GetArg(buf) end ``` The...
@dustdfg I added GetArg to the micro/buffer import
@dmaluka I also prefer the first for the same reason, in addition to avoiding an import and for me it makes more sense to `buf:GetArg()` than `buffer.GetArg(buf)`, but whatever the...