diff options
author | antirez <antirez@gmail.com> | 2020-04-30 13:42:25 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2020-04-30 13:43:58 +0200 |
commit | 3fcffe7d0496a0cb0cceb7b9933947ffdc9692eb (patch) | |
tree | c6f0964183b6c42fb414078a68edbf9a327c1bb6 | |
parent | 455d8a05c1aa5b415c768bf160934a38b14a1f4e (diff) | |
download | redis-3fcffe7d0496a0cb0cceb7b9933947ffdc9692eb.tar.gz |
redis-cli: fix hints with subcommands.
-rw-r--r-- | src/redis-cli.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/redis-cli.c b/src/redis-cli.c index ec0f58f5f..880f3d70a 100644 --- a/src/redis-cli.c +++ b/src/redis-cli.c @@ -699,7 +699,8 @@ static char *hintsCallback(const char *buf, int *color, int *bold) { for (i = 0; i < helpEntriesLen; i++) { if (!(helpEntries[i].type & CLI_HELP_COMMAND)) continue; - if (strcasecmp(argv[0],helpEntries[i].full) == 0) + if (strcasecmp(argv[0],helpEntries[i].full) == 0 || + strcasecmp(buf,helpEntries[i].full) == 0) { *color = 90; *bold = 0; |