Skip to content
Snippets Groups Projects
Commit 39f7aacf authored by Trübenbach, Ralf's avatar Trübenbach, Ralf Committed by Wolfgang Denk
Browse files

command.c: Enable auto tab for the editenv command


Enable the auto completion (with TAB) of the environment variable name
after the editenv command.

Signed-off-by: default avatarRalf Trübenbach <ralf.truebenbach@men.de>
parent 0738e24e
No related branches found
No related tags found
No related merge requests found
......@@ -188,6 +188,9 @@ static void install_auto_complete_handler(const char *cmd,
void install_auto_complete(void)
{
#if defined(CONFIG_CMD_EDITENV)
install_auto_complete_handler("editenv", var_complete);
#endif
install_auto_complete_handler("printenv", var_complete);
install_auto_complete_handler("setenv", var_complete);
#if defined(CONFIG_CMD_RUN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment