-
I know this is not conventional for shells, but it is really useful sometimes to have multiword aliases.
There are ways to achieve this with functions and etc, but wouldn't it be much easier to have…
-
Sometimes I'm facing with loops without the way to interrupt it (MacOS):
```xsh
while 1:
xonsh -c 'date; sleep 1'
# Ctrl-C
# KeyboardInterrupt
# Ctrl-C
# KeyboardInterrupt
# Ctrl-D
# ^D…
-
It would be nice if commands that outputted json were automatically turned into python objects. It's not a big deal, but once you move on from just json it could let us create some *very* interesting …
-
When foreign shell code is sourced, xonsh creates xonsh aliases for the aliases and functions that code creates and these xonsh aliases call the foreign code with the `subprocess` module. One result o…
-
It would be very nice to know your opinion towards Powershell, and also more particularly [NGS](https://ngs-lang.org/), as I find these two to be the closest of the purpose of NuShell in the first pla…
-
Dear Sir,
I have been following the installation guide (NIXOS-version) provided at https://docs.lfortran.org/en/installation/ and executed the following commands:
nix-shell --run "bash" --cores 4 -…
-
I've been using sos a lot in the past week on my university cluster but today it has suddenly stopped working with a strange environment issue. None of my steps which worked previously work anymore. F…
-
It was not clear to me what to do with stuff that normally goes into _.profile_ or _.bash_profile_ as the documentation doesn't cover this. I now found https://github.com/xonsh/xonsh/issues/4096#issue…
-
Hi! Thank you very much for the JupyterLab!
The [xonsh shell](https://xon.sh/) has the [kernel for Jupyter Notebook](https://github.com/xonsh/xonsh/blob/main/xonsh/jupyter_kernel.py). It works perf…
-
# Abstract
This is a proposal for re-designing the command substitution (a.k.a command pipelines) mechanisms in xonsh.
A simple example for command substitution in bash:
```bash
echo hi $(whoa…