Andy Kipp
Andy Kipp
I treat this issue as 'bike shedding':  And I'm going to close it to save future time and attention. I tried to use timings many times and I see...
I can confirm: ```xsh xonsh --no-rc --no-env xonfig colors ``` `INVERT_WHITE` looks like `DEFAULT`. PR with fix is welcome! Workaround: ```xsh $PROMPT = '{BACKGROUND_WHITE}{BLACK}{cwd}{RESET} @ ' ```
Nice catch! Can we do `user = "root" if superuser else $USER`?
May be [this comment](https://github.com/xonsh/xonsh/issues/5830#issue-2989665654) can help: > Using `uv tool install xonsh --with prompt-toolkit` then `uv tool run xonsh` does not produce this crash/exit behaviour, it works as expected.
Good start! Please add test for this.
You can find pytest tests for completer in `xonsh/tests`: * https://github.com/xonsh/xonsh/blob/main/tests/test_completer.py * https://github.com/xonsh/xonsh/blob/main/tests/test_completion_context.py * https://github.com/xonsh/xonsh/tree/main/tests/completers The short notes in guide: * https://xon.sh/devguide.html#running-the-tests-basic
It works: So because of this is small fix I'm going to merge it.
Thanks @alexprabhat99 !
Yes, but in most cases we have reading empty xontrib submodule and this takes time.
Hey @seemethere! Nice initiative! Please take a look how environment variables defined in environ.py. And you can use type e.g. `False` instead of `"False"`. It will be cool to [use...