Andy Kipp
Andy Kipp
我认为 [xonsh shell](https://github.com/xonsh/xonsh/) 是一个值得开发的项目,因为它巧妙地融合了 shell 语言和 Python。
We have: * events list - https://xon.sh/events.html (based on docs in the code, [example](https://github.com/xonsh/xonsh/blob/1e5bda4402f4f3257b1aa68b01cb22a8c6c4b485/xonsh/dirstack.py#L141)) * tutorial events - https://xon.sh/tutorial_events.html But we have no example of how to use every event....
```xsh with __xonsh__.env.swap(QWE="~"): echo $QWE # /home/user ``` Expected `~` as an output. It looks this is old bug. I can reproduce on xonsh 0.18. ## For community ⬇️ **Please...
## Motivation I don't know why we're using startswith but substring search gives more sane result. ## Before ```xsh aliases['dev-xonsh-build'] = 'echo 1' aliases['dev-xonsh-deploy'] = 'echo 2' depl # Not...
```xsh aliases['reload'] = 'echo 1' ``` Expected: `reload` as an option instead of `eload`. ## For community ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍...
We have events but we have no way how to show the list of registered events with current handlers. Let's add `__xonsh__.events` or something like this. ## For community ⬇️...
I've tried to use xonsh on Windows (not WSL) and see some improvements. - [ ] I feel the lack of guidance and first steps. We need to create a...
Since we have description of the environment variables during completion (thanks @jnoortheen for the #4488 #3823):  We should make an accent to [`__xonsh__.env.register`](https://github.com/xonsh/xonsh/blob/7ee5b26064aa115240d5aa25d5529d1d087b86e6/xonsh/environ.py#L2126-L2140) in the docs to allow the...
We had the list of authors: Now we have not: Also I see just 1 author in [release page](https://github.com/xonsh/xonsh/releases/tag/0.20.0) social preview: We need to add the author name to every...
I think we need more descriptive error message: ```xsh !(echo 1 #1) # SyntaxError: None: no further code ![echo 1 #1] # SyntaxError: None: no further code $(echo 1 #1)...