Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handlers: clarify help list #439

Merged
merged 1 commit into from
May 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions handlers.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ bool handler__set(globals_t *vars, char **argv, unsigned argc);

#define LIST_SHRTDOC "list currently known matches"
#define LIST_LONGDOC "usage: list [max_to_print]\n" \
"Print currently known matches, along with details about the\n" \
"match, such as its type, location, and last known value. The number in\n" \
"the left column is the `match-id`, this can be passed to other commands\n" \
"Print currently known matches, along with details about the match:\n" \
"[match-id] address, region id + offset, region type, value, flags\n" \
"The left column is the `match-id`, this can be passed to other commands\n" \
"such as `set`, `delete`, etc.\n" \
"By default `list` prints up to 10k matches, a numerical parameter" \
"By default `list` prints up to 10k matches, a numerical parameter\n" \
"can be given to change this limit.\n" \
"The flags displayed indicate the possible types of the variable.\n" \
"Also the region id, an offset and the region type belonging to a match\n" \
Expand Down