mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
parent
729f55238e
commit
7085a94fca
2 changed files with 1 additions and 27 deletions
|
@ -1,23 +0,0 @@
|
|||
**Added:**
|
||||
|
||||
* builtins: Added color to printx e.g. ``printx('Good', color='GREEN')``.
|
||||
|
||||
**Changed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -2018,14 +2018,11 @@ def format_color(string, **kwargs):
|
|||
return ansi_partial_color_format(string, style=style)
|
||||
|
||||
|
||||
def print_color(string, color=None, **kwargs):
|
||||
def print_color(string, **kwargs):
|
||||
"""Prints a string that may contain colors. This dispatched to the shell
|
||||
method of the same name. Colors will be formatted if they have not already
|
||||
been.
|
||||
"""
|
||||
if color:
|
||||
string = f'{{{color}}}{string}{{RESET}}'
|
||||
|
||||
if hasattr(xsh.shell, "shell"):
|
||||
xsh.shell.shell.print_color(string, **kwargs)
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue