Andy Kipp

Results 193 issues of 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....

docs
good first issue
events
v1

```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...

good first issue
environ
priority-high
v1

## 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...

completion

```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 👍...

good first issue
completion

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 ⬇️...

good first issue
events
v1

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...

windows

Since we have description of the environment variables during completion (thanks @jnoortheen for the #4488 #3823): ![image](https://user-images.githubusercontent.com/1708680/145413662-8ca8fb57-3ac8-4a8b-acac-63cd4f6effb5.png) 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...

docs
good first issue
completion
priority-low

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...

build
good first issue
development
priority-high
regress

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)...

parser
priority-low