这是一个使用 libedit 或 GNU readlines 生成自动完成选项的简单程序
#include <readline/readline.h>
#include <stdlib.h>
#include <string.h>
char *command_generator(char *word, int state) {
char *options[] = {"I_love_math", "he_love_math", "she_loves_math", "they_love_math", NULL};
return options[state] ? strdup(options[state]) : NULL;
}
int main(int argc, char **argv) {
rl_readline_name = "rl_example";
rl_completion_entry_function = (void*)command_generator;
rl_initialize();
rl_parse_and_bind("TAB: menu-complete");
while (1) {
char *line = readline("rl> ");
if (line == NULL) break;
printf("echo %s\n", line);
free(line);
}
return 0;
}
该程序有效,从某种意义上说,它显示了完成选项,但实际上并没有完成它们。也就是说,它只会显示可用的选项
$ gcc -ggdb3 -ledit example.c && ./a.out
rl> a
he_love_math I_love_math she_loves_math they_love_math
rl> a
即使在我按下制表符后,它也不会将“a”替换为“he_love_math”,它只是显示选项。
从一个小的互联网搜索中,我发现需要将 TAB 键绑定到菜单完成,但是如您所见,两者都没有运行
rl_parse_and_bind("TAB: menu-complete");
不将“TAB:菜单完成”放在我的主目录中会有所帮助。
我怎样才能完成工作?如何libedit
用完成建议替换当前单词?