Andy Kipp
Andy Kipp
Duplicate #2429
I'm going to close this with the reference to https://github.com/xonsh/xonsh/issues/4015#issuecomment-1229230329
Hi! Saving the current path to the history was added in #4271. Now you can get `cwd` for the command: ```python cd /tmp ls __xonsh__.history[-1].cwd # /tmp ``` So you...
The case with `sudo ls | less` still not working in xonsh 0.9.27. I've taken [a short look into this here](https://github.com/xonsh/xonsh/issues/2893#issuecomment-805741185).
Yep, PR is welcome!
Duplicate #2429
@Awpteamoose may be https://github.com/laloch/xontrib-fzf-widgets will work for you. Also I heard that fzf has many implementations and some of them are working better than vanilla fzf.
@Awpteamoose I can't repeat your case. Please give me the `xonfig` output.
@daniel-shimon I thought about it i.e. `cat file | pl!(line + '!') | head`. But after code review and machinery behind macro I see that it's not designed for this...
I've found that zsh also raise an error and requires quotes when using brackets: ```python zsh pip install hello[world] # zsh: no matches found: hello[world] ``` But bash and fish...