Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Latest commit

 

History

History
16 lines (12 loc) · 460 Bytes

File metadata and controls

16 lines (12 loc) · 460 Bytes
  • envs inside commands
# ![$FOO='foo' $BAR=2 echo r'$BAR']     # xfail
__xonsh__.subproc_captured_hiddenobject('$FOO=foo', '$BAR=2', 'echo', "r'$BAR'")
  • handling of pathsearch is different. It needs update from xonsh side. where it expands or passes in pymode based on the command function.

  • handle escaping with \. Alternatively one can use strings

# ![echo /?]
__xonsh__.subproc_captured_hiddenobject('echo', '\\?')