Even more tweaks

This commit is contained in:
Chris 2017-01-27 04:43:44 +01:00
parent ff9845e23e
commit 7c76928c3b
1 changed files with 3 additions and 3 deletions

View File

@ -408,7 +408,7 @@ class Shell
}
ksort($ghelp);
$_ = function($command,$args,$info) {
printf(" \e[97m%s\e[0m \e[90;3m%s\e[0m - \e[36m%s\e[0m\n", $command, $args, $info);
printf(" \e[96m%s\e[0m \e[0;3m%s\e[0m \e[30G\e[36m%s\e[0m\n", $command, $args, $info);
};
printf("\e[1mCommands:\e[0m\n");
foreach ($help as $command=>$info) {
@ -418,13 +418,13 @@ class Shell
$_($command, $args,$info);
}
if (count($ghelp)) {
printf("\n\e[0mCommands from parent contexts:\e[0m\n");
printf("\e[1mCommands from parent contexts:\e[0m\n");
if (strpos($command," ")!==false) {
list($command,$args) = explode(" ",$command,2);
} else $args=null;
$_($command, $args,$info);
}
printf("\nGlobal commands:\n");
printf("\e[1mGlobal commands:\e[0m\n");
$_("exit", null, "Leave the shell");
$_(".", null, "Show the context tree");
$_("..", null, "Discard the current context and go to parent");