Andy Kipp
Andy Kipp
Hi! I've got the error: ``` I: Using Apktool 2.6.0 I: Checking whether sources has changed... I: Smaling smali folder into classes.dex... I: Checking whether sources has changed... I: Smaling...
Hi! If you will want to add xonsh shell support I want to leave this the link to xonsh extension (xontrib) for Starship as an example - [xontrib-prompt-starship](https://github.com/anki-code/xontrib-prompt-starship). The core...
Support https://goteleport.com/docs/setup/reference/cli/#tsh **For community:** ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
**For community:** ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment**
```python xonsh --no-rc __xonsh__.env['PROMPT_FIELDS']['exit111'] = lambda: __xonsh__.subproc_captured_stdout(['bash', '-c', 'exit 111']) __xonsh__.env['PROMPT_FIELDS']['exit222'] = lambda: __xonsh__.subproc_captured_stdout(['bash', '-c', 'exit 222']) $PROMPT = '{exit111}{exit222}@ ' 2+2 # 4 __xonsh__.history[-1] # HistoryEntry(cmd='2+2\n', out=None, rtn=222, ts=[1659784602.3770356,...
Hello! xonsh is great! thanks! I have [xontrib-pipeliner](https://github.com/anki-code/xontrib-pipeliner) that implements line modification in pipe i.e. ```bash ls -1 / | pl "line + ' is here'" | head -n 3...
Hi! xonsh is inspiring! Thanks! After many scripts on xonsh I noticed that almost every time I need to use variables I'm using `${....}.get('ENV')` (or `__xonsh__.env.get`) instead of `$ENV` because...
Hi! ## xonfig xonsh 0.9.26, Python 3.8 ## Expected Behavior ```python $QWE = @$(echo 123) $QWE # 123 ``` ## Current Behavior ```python $QWE = @$(echo 123) # xonsh.tools.XonshError: xonsh:...
_Originally posted by scopatz in https://github.com/xonsh/xonsh/issues/1614#issuecomment-275882020 and https://github.com/xonsh/xonsh/issues/1614#issuecomment-275953842_: > If we wanted to be clever we'd build a **sh-parser and translator to xonsh**... > Well, I think having something like...