Andy Kipp

Results 470 comments of Andy Kipp

Hey @bennyyip! I moved your comment to the sudo thread with proposal to make a xontrib. Thank you for sharing this! As you can read first message of this PR...

I've changed api to more clear and putted CUT_ARGS to aliases to avoid remembering by jnoortheen ;) @gforsyth It's ready to review ;)

@gforsyth here is the new issue where *in fact* people want to use commands without wrapping it into the callable alias to avoid capturing/tty issues - https://github.com/xonsh/xonsh/issues/5512#issuecomment-2178376634 but now they...

@gforsyth here is another one issue where user tries to generate command using python subprocess and have fail with management std - #4792

Converted to draft because I want to think how to avoid CUT_ARGS

@jnoortheen @gforsyth it's ready to review! For understanding diff: * Before: `aliases.get()` returns list with command or callable alias with partially inherited arguments. * After: `aliases.get()` returns resolved command as...

@jnoortheen I removed additional tag for ARGS as you ask. It's ready to review!

@jaraco thank you to great review! We shortenize the code and I realized that part of the code is unused and it also reduced :)

I'm interesting is it possible to use `/` instead of `\` in Windows paths e.g. return`d:/path/to/dir/` in completer? Does this have negative consequences?

> with no trailing slash I think we can do something similar (i'm not the windows user so this is my imagination): ```xsh cd C:\win# cd 'C:\windows'# # All of...