mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00

* feat: add function to make event registration from function signature * docs: add xontrib special functions description * feat: handle xontribs with special functions also reduce usage of XSH singleton * fix: missing XSH for now import singleton * docs: fix .rst format * fix: failing tests * feat: implement primitive xontrib-unload and xontrib-reload * chore: give explicit name * docs: update doc
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
"""Additional core utilities that are implemented in xonsh.
|
|
|
|
The current list includes:
|
|
|
|
* cat
|
|
* echo
|
|
* pwd
|
|
* tee
|
|
* tty
|
|
* yes
|
|
|
|
In many cases, these may have a lower performance overhead than the
|
|
posix command line utility with the same name. This is because these
|
|
tools avoid the need for a full subprocess call. Additionally, these
|
|
tools are cross-platform.
|
|
"""
|
|
from xonsh.built_ins import XonshSession
|
|
from xonsh.platform import ON_POSIX
|
|
from xonsh.xoreutils.cat import cat
|
|
from xonsh.xoreutils.echo import echo
|
|
from xonsh.xoreutils.pwd import pwd
|
|
from xonsh.xoreutils.tee import tee
|
|
from xonsh.xoreutils.tty import tty
|
|
from xonsh.xoreutils.umask import umask
|
|
from xonsh.xoreutils.uname import uname
|
|
from xonsh.xoreutils.uptime import uptime
|
|
from xonsh.xoreutils.yes import yes
|
|
|
|
|
|
def _load_xontrib_(xsh: XonshSession, **_):
|
|
xsh.aliases["cat"] = cat
|
|
xsh.aliases["echo"] = echo
|
|
xsh.aliases["pwd"] = pwd
|
|
xsh.aliases["tee"] = tee
|
|
xsh.aliases["tty"] = tty
|
|
xsh.aliases["uname"] = uname
|
|
xsh.aliases["uptime"] = uptime
|
|
xsh.aliases["umask"] = umask
|
|
xsh.aliases["yes"] = yes
|
|
if ON_POSIX:
|
|
from xonsh.xoreutils.ulimit import ulimit
|
|
|
|
xsh.aliases["ulimit"] = ulimit
|