mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
readline autocomplete: complete up to next space, so complete one single word at once
This commit is contained in:
parent
ef7c301217
commit
f2650e7279
1 changed files with 6 additions and 1 deletions
|
@ -732,7 +732,12 @@ char* rl_command_generator(const char *text, int state) {
|
|||
index++;
|
||||
|
||||
if (strncmp (command, rl_line_buffer, rlen) == 0) {
|
||||
return strdup(command + (rlen - len));
|
||||
const char *next = command + (rlen - len);
|
||||
const char *space = strstr(next, " ");
|
||||
if (space != NULL) {
|
||||
return strndup(next, space - next);
|
||||
}
|
||||
return strdup(next);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue