Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created August 21, 2019 05:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/e1df8a5323d0b4a096bfcd244958230f to your computer and use it in GitHub Desktop.
Save ryantm/e1df8a5323d0b4a096bfcd244958230f to your computer and use it in GitHub Desktop.
/nix/store/ki7f3yyfhxsdfc26jq5lfjfl2jrgar0w-xonsh-0.9.10
├── bin
│   ├── xonsh
│   ├── xon.sh
│   └── xonsh-cat
├── lib
│   └── python3.7
│   └── site-packages
│   ├── xonsh
│   │   ├── aliases.py
│   │   ├── ansi_colors.py
│   │   ├── ast.py
│   │   ├── base_shell.py
│   │   ├── built_ins.py
│   │   ├── codecache.py
│   │   ├── color_tools.py
│   │   ├── commands_cache.py
│   │   ├── completer.py
│   │   ├── completers
│   │   │   ├── _aliases.py
│   │   │   ├── base.py
│   │   │   ├── bash_completion.py
│   │   │   ├── bash.py
│   │   │   ├── commands.py
│   │   │   ├── completer.py
│   │   │   ├── dirs.py
│   │   │   ├── __init__.py
│   │   │   ├── init.py
│   │   │   ├── man.py
│   │   │   ├── path.py
│   │   │   ├── pip.py
│   │   │   ├── __pycache__
│   │   │   │   ├── _aliases.cpython-37.pyc
│   │   │   │   ├── _aliases.cpython-37-PYTEST.pyc
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── base.cpython-37-PYTEST.pyc
│   │   │   │   ├── bash_completion.cpython-37.pyc
│   │   │   │   ├── bash_completion.cpython-37-PYTEST.pyc
│   │   │   │   ├── bash.cpython-37.pyc
│   │   │   │   ├── bash.cpython-37-PYTEST.pyc
│   │   │   │   ├── commands.cpython-37.pyc
│   │   │   │   ├── commands.cpython-37-PYTEST.pyc
│   │   │   │   ├── completer.cpython-37.pyc
│   │   │   │   ├── completer.cpython-37-PYTEST.pyc
│   │   │   │   ├── dirs.cpython-37.pyc
│   │   │   │   ├── dirs.cpython-37-PYTEST.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── init.cpython-37.pyc
│   │   │   │   ├── init.cpython-37-PYTEST.pyc
│   │   │   │   ├── man.cpython-37.pyc
│   │   │   │   ├── man.cpython-37-PYTEST.pyc
│   │   │   │   ├── path.cpython-37.pyc
│   │   │   │   ├── path.cpython-37-PYTEST.pyc
│   │   │   │   ├── pip.cpython-37.pyc
│   │   │   │   ├── pip.cpython-37-PYTEST.pyc
│   │   │   │   ├── python.cpython-37.pyc
│   │   │   │   ├── python.cpython-37-PYTEST.pyc
│   │   │   │   ├── tools.cpython-37.pyc
│   │   │   │   ├── tools.cpython-37-PYTEST.pyc
│   │   │   │   ├── xompletions.cpython-37.pyc
│   │   │   │   └── xompletions.cpython-37-PYTEST.pyc
│   │   │   ├── python.py
│   │   │   ├── tools.py
│   │   │   └── xompletions.py
│   │   ├── contexts.py
│   │   ├── diff_history.py
│   │   ├── dirstack.py
│   │   ├── dumb_shell.py
│   │   ├── environ.py
│   │   ├── events.py
│   │   ├── execer.py
│   │   ├── foreign_shells.py
│   │   ├── fs.py
│   │   ├── history
│   │   │   ├── base.py
│   │   │   ├── dummy.py
│   │   │   ├── __init__.py
│   │   │   ├── json.py
│   │   │   ├── main.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── base.cpython-37-PYTEST.pyc
│   │   │   │   ├── dummy.cpython-37.pyc
│   │   │   │   ├── dummy.cpython-37-PYTEST.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── json.cpython-37.pyc
│   │   │   │   ├── json.cpython-37-PYTEST.pyc
│   │   │   │   ├── main.cpython-37.pyc
│   │   │   │   ├── main.cpython-37-PYTEST.pyc
│   │   │   │   ├── sqlite.cpython-37.pyc
│   │   │   │   └── sqlite.cpython-37-PYTEST.pyc
│   │   │   └── sqlite.py
│   │   ├── imphooks.py
│   │   ├── __init__.py
│   │   ├── inspectors.py
│   │   ├── jobs.py
│   │   ├── jsonutils.py
│   │   ├── jupyter_kernel.py
│   │   ├── jupyter_shell.py
│   │   ├── lazyasd.py
│   │   ├── lazyimps.py
│   │   ├── lazyjson.py
│   │   ├── lexer.py
│   │   ├── lib
│   │   │   ├── collections.py
│   │   │   ├── __init__.py
│   │   │   ├── os.xsh
│   │   │   ├── __pycache__
│   │   │   │   ├── collections.cpython-37.pyc
│   │   │   │   ├── collections.cpython-37-PYTEST.pyc
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   └── subprocess.xsh
│   │   ├── macutils.py
│   │   ├── __main__.py
│   │   ├── main.py
│   │   ├── openpy.py
│   │   ├── parser.py
│   │   ├── parsers
│   │   │   ├── base.py
│   │   │   ├── context_check.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── base.cpython-37-PYTEST.pyc
│   │   │   │   ├── context_check.cpython-37.pyc
│   │   │   │   ├── context_check.cpython-37-PYTEST.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── v35.cpython-37.pyc
│   │   │   │   ├── v35.cpython-37-PYTEST.pyc
│   │   │   │   ├── v36.cpython-37.pyc
│   │   │   │   └── v36.cpython-37-PYTEST.pyc
│   │   │   ├── v35.py
│   │   │   └── v36.py
│   │   ├── parser_table.py
│   │   ├── platform.py
│   │   ├── ply
│   │   │   ├── ply
│   │   │   │   ├── cpp.py
│   │   │   │   ├── ctokens.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── lex.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── cpp.cpython-37.pyc
│   │   │   │   │   ├── ctokens.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── lex.cpython-37.pyc
│   │   │   │   │   ├── lex.cpython-37-PYTEST.pyc
│   │   │   │   │   ├── yacc.cpython-37.pyc
│   │   │   │   │   ├── yacc.cpython-37-PYTEST.pyc
│   │   │   │   │   └── ygen.cpython-37.pyc
│   │   │   │   ├── yacc.py
│   │   │   │   └── ygen.py
│   │   │   └── __pycache__
│   │   ├── pretty.py
│   │   ├── proc.py
│   │   ├── prompt
│   │   │   ├── base.py
│   │   │   ├── cwd.py
│   │   │   ├── env.py
│   │   │   ├── gitstatus.py
│   │   │   ├── __init__.py
│   │   │   ├── job.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   ├── base.cpython-37-PYTEST.pyc
│   │   │   │   ├── cwd.cpython-37.pyc
│   │   │   │   ├── cwd.cpython-37-PYTEST.pyc
│   │   │   │   ├── env.cpython-37.pyc
│   │   │   │   ├── env.cpython-37-PYTEST.pyc
│   │   │   │   ├── gitstatus.cpython-37.pyc
│   │   │   │   ├── gitstatus.cpython-37-PYTEST.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── job.cpython-37.pyc
│   │   │   │   ├── job.cpython-37-PYTEST.pyc
│   │   │   │   ├── vc.cpython-37.pyc
│   │   │   │   └── vc.cpython-37-PYTEST.pyc
│   │   │   └── vc.py
│   │   ├── ptk
│   │   │   ├── completer.py
│   │   │   ├── history.py
│   │   │   ├── __init__.py
│   │   │   ├── key_bindings.py
│   │   │   ├── __pycache__
│   │   │   │   ├── completer.cpython-37.pyc
│   │   │   │   ├── history.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── key_bindings.cpython-37.pyc
│   │   │   │   ├── shell.cpython-37.pyc
│   │   │   │   └── shortcuts.cpython-37.pyc
│   │   │   ├── shell.py
│   │   │   └── shortcuts.py
│   │   ├── ptk2
│   │   │   ├── completer.py
│   │   │   ├── history.py
│   │   │   ├── __init__.py
│   │   │   ├── key_bindings.py
│   │   │   ├── __pycache__
│   │   │   │   ├── completer.cpython-37.pyc
│   │   │   │   ├── history.cpython-37.pyc
│   │   │   │   ├── history.cpython-37-PYTEST.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── key_bindings.cpython-37.pyc
│   │   │   │   ├── key_bindings.cpython-37-PYTEST.pyc
│   │   │   │   └── shell.cpython-37.pyc
│   │   │   └── shell.py
│   │   ├── __pycache__
│   │   │   ├── aliases.cpython-37.pyc
│   │   │   ├── aliases.cpython-37-PYTEST.pyc
│   │   │   ├── ansi_colors.cpython-37.pyc
│   │   │   ├── ansi_colors.cpython-37-PYTEST.pyc
│   │   │   ├── ast.cpython-37.pyc
│   │   │   ├── ast.cpython-37-PYTEST.pyc
│   │   │   ├── base_shell.cpython-37.pyc
│   │   │   ├── base_shell.cpython-37-PYTEST.pyc
│   │   │   ├── built_ins.cpython-37.pyc
│   │   │   ├── built_ins.cpython-37-PYTEST.pyc
│   │   │   ├── codecache.cpython-37.pyc
│   │   │   ├── codecache.cpython-37-PYTEST.pyc
│   │   │   ├── color_tools.cpython-37.pyc
│   │   │   ├── color_tools.cpython-37-PYTEST.pyc
│   │   │   ├── commands_cache.cpython-37.pyc
│   │   │   ├── commands_cache.cpython-37-PYTEST.pyc
│   │   │   ├── completer.cpython-37.pyc
│   │   │   ├── completer.cpython-37-PYTEST.pyc
│   │   │   ├── contexts.cpython-37.pyc
│   │   │   ├── contexts.cpython-37-PYTEST.pyc
│   │   │   ├── diff_history.cpython-37.pyc
│   │   │   ├── diff_history.cpython-37-PYTEST.pyc
│   │   │   ├── dirstack.cpython-37.pyc
│   │   │   ├── dirstack.cpython-37-PYTEST.pyc
│   │   │   ├── dumb_shell.cpython-37.pyc
│   │   │   ├── environ.cpython-37.pyc
│   │   │   ├── environ.cpython-37-PYTEST.pyc
│   │   │   ├── events.cpython-37.pyc
│   │   │   ├── events.cpython-37-PYTEST.pyc
│   │   │   ├── execer.cpython-37.pyc
│   │   │   ├── execer.cpython-37-PYTEST.pyc
│   │   │   ├── foreign_shells.cpython-37.pyc
│   │   │   ├── foreign_shells.cpython-37-PYTEST.pyc
│   │   │   ├── fs.cpython-37.pyc
│   │   │   ├── fs.cpython-37-PYTEST.pyc
│   │   │   ├── imphooks.cpython-37.pyc
│   │   │   ├── imphooks.cpython-37-PYTEST.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── inspectors.cpython-37.pyc
│   │   │   ├── inspectors.cpython-37-PYTEST.pyc
│   │   │   ├── jobs.cpython-37.pyc
│   │   │   ├── jobs.cpython-37-PYTEST.pyc
│   │   │   ├── jsonutils.cpython-37.pyc
│   │   │   ├── jsonutils.cpython-37-PYTEST.pyc
│   │   │   ├── jupyter_kernel.cpython-37.pyc
│   │   │   ├── jupyter_shell.cpython-37.pyc
│   │   │   ├── lazyasd.cpython-37.pyc
│   │   │   ├── lazyasd.cpython-37-PYTEST.pyc
│   │   │   ├── lazyimps.cpython-37.pyc
│   │   │   ├── lazyimps.cpython-37-PYTEST.pyc
│   │   │   ├── lazyjson.cpython-37.pyc
│   │   │   ├── lazyjson.cpython-37-PYTEST.pyc
│   │   │   ├── lexer.cpython-37.pyc
│   │   │   ├── lexer.cpython-37-PYTEST.pyc
│   │   │   ├── macutils.cpython-37.pyc
│   │   │   ├── __main__.cpython-37.pyc
│   │   │   ├── main.cpython-37.pyc
│   │   │   ├── main.cpython-37-PYTEST.pyc
│   │   │   ├── openpy.cpython-37.pyc
│   │   │   ├── openpy.cpython-37-PYTEST.pyc
│   │   │   ├── parser.cpython-37.pyc
│   │   │   ├── parser.cpython-37-PYTEST.pyc
│   │   │   ├── parser_table.cpython-37.pyc
│   │   │   ├── parser_table.cpython-37-PYTEST.pyc
│   │   │   ├── platform.cpython-37.pyc
│   │   │   ├── platform.cpython-37-PYTEST.pyc
│   │   │   ├── pretty.cpython-37.pyc
│   │   │   ├── pretty.cpython-37-PYTEST.pyc
│   │   │   ├── proc.cpython-37.pyc
│   │   │   ├── proc.cpython-37-PYTEST.pyc
│   │   │   ├── pyghooks.cpython-37.pyc
│   │   │   ├── pyghooks.cpython-37-PYTEST.pyc
│   │   │   ├── pygments_cache.cpython-37.pyc
│   │   │   ├── pygments_cache.cpython-37-PYTEST.pyc
│   │   │   ├── pytest_plugin.cpython-37.pyc
│   │   │   ├── pytest_plugin.cpython-37-PYTEST.pyc
│   │   │   ├── readline_shell.cpython-37.pyc
│   │   │   ├── replay.cpython-37.pyc
│   │   │   ├── replay.cpython-37-PYTEST.pyc
│   │   │   ├── shell.cpython-37.pyc
│   │   │   ├── shell.cpython-37-PYTEST.pyc
│   │   │   ├── style_tools.cpython-37.pyc
│   │   │   ├── style_tools.cpython-37-PYTEST.pyc
│   │   │   ├── timings.cpython-37.pyc
│   │   │   ├── timings.cpython-37-PYTEST.pyc
│   │   │   ├── tokenize.cpython-37.pyc
│   │   │   ├── tokenize.cpython-37-PYTEST.pyc
│   │   │   ├── tools.cpython-37.pyc
│   │   │   ├── tools.cpython-37-PYTEST.pyc
│   │   │   ├── tracer.cpython-37.pyc
│   │   │   ├── winutils.cpython-37.pyc
│   │   │   ├── wizard.cpython-37.pyc
│   │   │   ├── wizard.cpython-37-PYTEST.pyc
│   │   │   ├── xonfig.cpython-37.pyc
│   │   │   ├── xonfig.cpython-37-PYTEST.pyc
│   │   │   ├── xontribs.cpython-37.pyc
│   │   │   └── xontribs.cpython-37-PYTEST.pyc
│   │   ├── pyghooks.py
│   │   ├── pygments_cache.py
│   │   ├── pytest_plugin.py
│   │   ├── readline_shell.py
│   │   ├── replay.py
│   │   ├── shell.py
│   │   ├── style_tools.py
│   │   ├── timings.py
│   │   ├── tokenize.py
│   │   ├── tools.py
│   │   ├── tracer.py
│   │   ├── winutils.py
│   │   ├── wizard.py
│   │   ├── xonfig.py
│   │   ├── xontribs.json
│   │   ├── xontribs.py
│   │   └── xoreutils
│   │   ├── cat.py
│   │   ├── echo.py
│   │   ├── __init__.py
│   │   ├── pwd.py
│   │   ├── __pycache__
│   │   │   ├── cat.cpython-37.pyc
│   │   │   ├── cat.cpython-37-PYTEST.pyc
│   │   │   ├── echo.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── pwd.cpython-37.pyc
│   │   │   ├── tee.cpython-37.pyc
│   │   │   ├── tty.cpython-37.pyc
│   │   │   ├── uptime.cpython-37.pyc
│   │   │   ├── uptime.cpython-37-PYTEST.pyc
│   │   │   ├── util.cpython-37.pyc
│   │   │   ├── util.cpython-37-PYTEST.pyc
│   │   │   ├── _which.cpython-37.pyc
│   │   │   ├── which.cpython-37.pyc
│   │   │   ├── _which.cpython-37-PYTEST.pyc
│   │   │   ├── which.cpython-37-PYTEST.pyc
│   │   │   └── yes.cpython-37.pyc
│   │   ├── tee.py
│   │   ├── tty.py
│   │   ├── uptime.py
│   │   ├── util.py
│   │   ├── _which.py
│   │   ├── which.py
│   │   └── yes.py
│   ├── xonsh-0.9.10.dist-info
│   │   ├── AUTHORS.rst
│   │   ├── entry_points.txt
│   │   ├── INSTALLER
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── xontrib
│   ├── bashisms.py
│   ├── coreutils.py
│   ├── distributed.py
│   ├── free_cwd.py
│   ├── jedi.xsh
│   ├── mplhooks.py
│   ├── mpl.py
│   ├── prompt_ret_code.xsh
│   ├── __pycache__
│   │   ├── bashisms.cpython-37.pyc
│   │   ├── coreutils.cpython-37.pyc
│   │   ├── distributed.cpython-37.pyc
│   │   ├── free_cwd.cpython-37.pyc
│   │   ├── mpl.cpython-37.pyc
│   │   ├── mplhooks.cpython-37.pyc
│   │   ├── voxapi.cpython-37.pyc
│   │   ├── vox.cpython-37.pyc
│   │   └── whole_word_jumping.cpython-37.pyc
│   ├── voxapi.py
│   ├── vox.py
│   └── whole_word_jumping.py
└── nix-support
└── propagated-build-inputs
30 directories, 349 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment