FS-4694 --resolve

This commit is contained in:
Jeff Lenk 2012-10-17 09:17:16 -05:00
parent c51aebf621
commit 77eabbbdf7
2 changed files with 6 additions and 0 deletions

View File

@ -1520,6 +1520,9 @@ int main(int argc, char *argv[])
el_set(el, EL_ADDFN, "ed-complete", "Complete argument", complete);
el_set(el, EL_BIND, "^I", "ed-complete", NULL);
/* "Delete" key. */
el_set(el, EL_BIND, "\033[3~", "ed-delete-next-char", NULL);
if (!(myhistory = history_init())) {
esl_log(ESL_LOG_ERROR, "history could not be initialized\n");
goto done;

View File

@ -1119,6 +1119,9 @@ SWITCH_DECLARE(void) switch_console_loop(void)
el_set(el, EL_ADDFN, "ed-complete", "Complete argument", complete);
el_set(el, EL_BIND, "^I", "ed-complete", NULL);
/* "Delete" key. */
el_set(el, EL_BIND, "\033[3~", "ed-delete-next-char", NULL);
myhistory = history_init();
if (myhistory == 0) {
fprintf(stderr, "history could not be initialized\n");