Skip to content

Commit

Permalink
Renamed phpl-edit to phpl-config
Browse files Browse the repository at this point in the history
  • Loading branch information
noccy80 committed Dec 16, 2016
1 parent 3beb2b7 commit b8d5002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ To activate, reopen your console or source your `.bashrc` again:

Add git status in the best position:

$ phpl-edit -igit
$ phpl-config -igit

Add git status to beginning of prompt:

$ phpl-edit -igit --first
$ phpl-config -igit --first

Use `-h` for help.
2 changes: 1 addition & 1 deletion bin/phpl-edit → bin/phpl-config
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ if (cmdl_get($opts,'list')) {
foreach ($_MODULES as $module) {
printf(" - \e[1m%s\e[0m: %s\n", $module->name, $module->info);
foreach ($module->opts as $opt) {
printf(" + <%s>%s - %s (default:%s)\n", $opt->type, $opt->name, $opt->descr, $opt->def);
printf(" + <%s>%s - %s (default:\e[1m%s\e[0m)\n", $opt->type, $opt->name, $opt->descr, var_export($opt->def,true));
}
}
} elseif (($delete = cmdl_get($opts,'delete'))) {
Expand Down

0 comments on commit b8d5002

Please sign in to comment.