Andy Kipp

Results 193 issues of Andy Kipp

```xsh xonfig # xonsh 0.14.3 mkdir -p /tmp/abc /tmp/123 /tmp/a123 cd /tmp/abc && ls # Result: empty # Expected: empty cd /tmp/a123 && ls # Result: empty # Expected: empty...

good first issue
parser

I've made a try to run xonsh on Windows 10 WSL2 Ubuntu 20 and found that it works fast from root but slow from user. In Linux and WSL1 xonsh...

windows
good first issue
speed

Refactoring: ### First step - [x] In completion search by substring instead of search by lprefix. Solved in #5388. - [x] Fix setting variable using `xonsh -DVAR=VAL`. Solved in #5396....

good first issue
metaissue
environ
v1
refactoring

Originally posted by @majidaldo May 15, 2023 when i looked at the [xml example](https://xon.sh/tutorial_macros.html) i couldn't help but think if there would be a way to get syntax highlighting. ```...

macro

Just interesting: is it possible to run xonsh using [RustPython](https://github.com/RustPython/RustPython). If anybody tried it please report about benefits i.e. speed. Cc #3678 #3065 ## For community ⬇️ **Please click the...

speed
priority-high

We have validation for `*DIRS`: https://github.com/xonsh/xonsh/blob/076ea2583f14485bc910c9f9b74561bfc9ca0094/xonsh/environ.py#L1232 But there is a case in [Jupyter](https://stackoverflow.com/questions/74734191/how-to-set-the-environment-variable-jupyter-platform-dirs-1): >DeprecationWarning: Jupyter is migrating its paths to use standard platformdirs >given by the platformdirs library. To remove...

environ
priority-low

Hi! If we add comments: * at start of with-block - they will be ignored * at the end of the context manager block -- they will be added ```python...

bug
good first issue
parser
macro
priority-medium

As we know from [Python-mode vs Subprocess-mode](https://xon.sh/tutorial.html#python-mode-vs-subprocess-mode): > Take the case of `ls -l`. This is valid Python code, though it could have also been written as `ls - l`...

good first issue
parser

_Originally posted by @amacfie in https://github.com/xonsh/xonsh/issues/4214#issuecomment-1328288341_: On Debian/Arch: ```python docker run --rm -it python:3.10-slim /bin/bash -c "pip install 'xonsh[full]' && xonsh" xonsh --version # xonsh/0.13.3 !(echo hi) == 'hi\n' #...

linux
threading

hi! Please add the tutorial for the python-powered https://xon.sh shell. It's more progressive for Data Science than bash. The start point could be here - https://github.com/anki-code/xonsh-cheatsheet/. Thanks!