mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
12 lines
226 B
Python
12 lines
226 B
Python
"""Matplotlib xontribution."""
|
|
|
|
from xonsh.proc import foreground as _foreground
|
|
|
|
@_foreground
|
|
def _mpl(args, stdin=None):
|
|
"""Hooks to matplotlib"""
|
|
from xontrib.mplhooks import show
|
|
show()
|
|
|
|
|
|
aliases['mpl'] = _mpl
|