taconi

Results 36 comments of taconi

Really this part of accepting only one file is not at all intuitive since the accepted type of the BASH_COMPLETIONS variable is a list or a tuple, something like the...

To whom it may concern, this implementation worked for me: ```xsh from pathlib import Path from xonsh.completers.tools import contextual_command_completer_for from xonsh.parsers.completion_context import CommandContext def helper_completer(paths: Iterable[str], context: CommandContext): """ Reimplementation...

Hi, @anki-code ! Thanks for the suggestion, I didn't know about this possibility, I'm new to the xonsh world. I created the xontrib [bash-completions-dirs](https://pypi.org/project/xontrib-bash-completions-dirs/), in pypi there is an explanation...

> @taconi it's awesome! Many thanks! Please add your xontrib to [awesome-xontribs](https://github.com/xonsh/awesome-xontribs)! [PR](https://github.com/xonsh/awesome-xontribs/pull/3) was created.

@Pradhvan are you working on this ? If not, I would be happy to take this up

I don't see why not leave it separate. The sh file seems to have more to it.

> ```diff > diff --git a/runtime/syntax/sh.yaml b/runtime/syntax/sh.yaml > index 329b1014..c87c243c 100644 > --- a/runtime/syntax/sh.yaml > +++ b/runtime/syntax/sh.yaml > @@ -8,11 +8,12 @@ filetype: shell > # > # Special filenames:...

As long as pr is not accepted, installation can be done as follows: `pip>=23.1` ```bash pip install playsound@git+https://github.com/taconi/playsound ``` `poetry>=1.5.0` ```bash poetry add playsound@git+https://github.com/taconi/playsound ```

It would be more of a question of installation, in version [23.1 (2023-04-15)](https://pip.pypa.io/en/stable/news/#id59) of [pip](https://pip.pypa.io/en/stable/) support has been removed from `setup.py`: > Remove `setup.py` install fallback when building a wheel...