Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 460 Bytes

todos.md

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', '\\?')