We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b8671 commit 687db35Copy full SHA for 687db35
src/help.c
@@ -105,11 +105,8 @@ help_grep(struct view *view, struct line *line)
105
} else if (help->request > REQ_RUN_REQUESTS) {
106
struct run_request *req = get_run_request(help->request);
107
const char *key = get_keys(keymap, help->request, true);
108
- char buf[SIZEOF_STR] = "";
109
- const char *text[] = { key, buf, NULL };
110
111
- if (!argv_to_string(req->argv, buf, sizeof(buf), " "))
112
- return false;
+ const char *text[] = { key, req->name, req->help, NULL };
113
114
return grep_text(view, text);
115
0 commit comments