added color constants, version 0.2 of lish
This commit is contained in:
parent
0fc449019f
commit
4255657de4
1 changed files with 8 additions and 1 deletions
|
|
@ -27,7 +27,14 @@ import os
|
|||
from shlex import split as shsplit
|
||||
from cmd import Cmd
|
||||
|
||||
__version__ = "0.1.1"
|
||||
__version__ = "0.2"
|
||||
|
||||
PURPLE = "\033[95m"
|
||||
BLUE = "\033[94m"
|
||||
GREEN = "\033[92m"
|
||||
YELLOW = "\033[93m"
|
||||
RED = "\033[91m"
|
||||
END = "\033[0m"
|
||||
|
||||
|
||||
class LishFrontend(Frontend):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue