Andy Kipp

Results 193 issues of Andy Kipp

Probably the usage of the `~/.ssh/id_rsa` to encrypt the history should be one of the alternatives. After running `ssh-add some_key` the xonsh should run without asking the key. ## For...

good first issue

Added [Xonsh shell](https://github.com/xonsh/xonsh) lexer. Example: ```python from pygments import highlight from pygments.lexers.python import XonshLexer from pygments.formatters import HtmlFormatter # Command from https://xon.sh/tutorial.html#nesting-subprocesses code = "$[@$(which @($(echo ls).strip())) @('-' + $(printf...

hi @ThaminduR! Thank you for your work here! I'm trying to repeat the examples using `jupyter/pyspark-notebook:spark-2` docker container with PySpark 2.4.5 and Python 3.7.6 (as required in the readme) but...

This is metaissue for list of tasks on refactoring. Refactoring procs/pipelines.py: * Rename `CommandPipeline.proc` to `last_proc` to represent the actual thing that code is really doing. * Show the whole...

good first issue
metaissue
development
v1
refactoring

Using `@` as alternative to `__xonsh__` makes commands more short and elegant: ```bash @.env # instead of `__xonsh__.env` and forget about `${...}` @.history # instead of `__xonsh__.history` @.imp.json.loads('{}') # https://github.com/xonsh/xonsh/pull/5595...

commandlining
v1

### Before ```xsh sudo xonsh --no-rc # @host ~ # ``` ### After ```xsh sudo xonsh --no-rc # root@host ~ @# ``` It's in sync with: ```xsh docker run -it...

We have this line: https://github.com/xonsh/xonsh/blob/55b341d47753967c70a4dcf9ff30690877f66048/xonsh/tools.py#L1056-L1058 But https://docs.python.org/3/library/sys.html: > These three variables are deprecated; > sys.last_type > sys.last_value > sys.last_traceback > Use [sys.last_exc](https://docs.python.org/3/library/sys.html#sys.last_exc) instead. They hold the legacy representation of sys.last_exc,...

good first issue
py312
refactoring

I found weird artifact related to this PR during work on #5366. Minimal repeatable example: ```xsh # docker run --rm -it xonsh/xonsh:slim xonsh xonfig # xonsh 0.14.0, python 3.11 $RAISE_SUBPROC_ERROR...

threading
aliases

I found that [`xc` from xontrib-rc-awesome](https://github.com/anki-code/xontrib-rc-awesome/blob/c0a0e159a14a8560e17b70cd8ac23c451274fde0/xontrib/rc_awesome.xsh#L98-L115) is very useful alias: ```xsh from shutil import which as _which # Alias to get Xonsh Context. # Read more: https://github.com/anki-code/xonsh-cheatsheet/blob/main/README.md#install-xonsh-with-package-and-environment-management-system @aliases.register("xc") def _alias_xc():...

good first issue
aliases

https://github.com/jupyter/notebook/issues/6307 ## For community ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**

good first issue