| 386 | #endif /* FINSH_USING_AUTH */ |
| 387 | |
| 388 | static void shell_auto_complete(char *prefix) |
| 389 | { |
| 390 | rt_kprintf("\n"); |
| 391 | msh_auto_complete(prefix); |
| 392 | |
| 393 | #ifdef FINSH_USING_OPTION_COMPLETION |
| 394 | msh_opt_auto_complete(prefix); |
| 395 | #endif |
| 396 | |
| 397 | rt_kprintf("%s%s", FINSH_PROMPT, prefix); |
| 398 | } |
| 399 | |
| 400 | #ifdef FINSH_USING_HISTORY |
| 401 | static rt_bool_t shell_handle_history(struct finsh_shell *shell) |
no test coverage detected