Skip to content

Commit

Permalink
do not output options as part of the usage output
Browse files Browse the repository at this point in the history
This is an unnecessary maintenance burden and the manual should be favored instead.
  • Loading branch information
mptre committed Dec 31, 2019
1 parent 93a552b commit e253d7d
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions pick.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,7 @@ main(int argc, char *argv[])
__dead void
usage(void)
{
fprintf(stderr, "usage: pick [-dKoSXx] [-q query]\n"
" -K disable toggling of keypad transmit mode\n"
" -S disable sorting\n"
" -d read and display descriptions\n"
" -o output description of selected on exit\n"
" -x enable alternate screen\n"
" -X disable alternate screen\n"
" -q query supply an initial search query\n");
fprintf(stderr, "usage: pick [-dKoSXx] [-q query]\n");
exit(1);
}

Expand Down

0 comments on commit e253d7d

Please # to comment.