Commit 7cfad60c 7cfad60ccf1fea9bc2e5ced4caadc34f60d94f62 by Sergey Poznyakoff

Use exec_compl to complete first argument to !

1 parent 489751a3
...@@ -171,7 +171,7 @@ static const struct mail_command_entry mail_command_table[] = { ...@@ -171,7 +171,7 @@ static const struct mail_command_entry mail_command_table[] = {
171 { "?", "?", "? [command...]", 0, 171 { "?", "?", "? [command...]", 0,
172 mail_help, command_compl }, 172 mail_help, command_compl },
173 { "!", "", "![command]", 0, 173 { "!", "", "![command]", 0,
174 mail_shell, NULL }, /* FIXME: exec_compl */ 174 mail_shell, exec_compl },
175 { "=", "=", "=", 0, 175 { "=", "=", "=", 0,
176 mail_eq, no_compl }, 176 mail_eq, no_compl },
177 { "#", "#", "# comment", 0, 177 { "#", "#", "# comment", 0,
......