• Home
  • Raw
  • Download

Lines Matching refs:edchars

54 } edchars;  variable
1786 *tmp = isedchar(edchars.eof) ? (unsigned char)edchars.eof : in x_end_of_text()
3364 edchars.erase = toedchar(tty_state.c_cc[VERASE]); in x_mode()
3365 edchars.kill = toedchar(tty_state.c_cc[VKILL]); in x_mode()
3366 edchars.intr = toedchar(tty_state.c_cc[VINTR]); in x_mode()
3367 edchars.quit = toedchar(tty_state.c_cc[VQUIT]); in x_mode()
3368 edchars.eof = toedchar(tty_state.c_cc[VEOF]); in x_mode()
3370 edchars.werase = toedchar(tty_state.c_cc[VWERASE]); in x_mode()
3372 edchars.werase = 0; in x_mode()
3375 if (!edchars.erase) in x_mode()
3376 edchars.erase = CTRL_H; in x_mode()
3377 if (!edchars.kill) in x_mode()
3378 edchars.kill = CTRL_U; in x_mode()
3379 if (!edchars.intr) in x_mode()
3380 edchars.intr = CTRL_C; in x_mode()
3381 if (!edchars.quit) in x_mode()
3382 edchars.quit = CTRL_BK; in x_mode()
3383 if (!edchars.eof) in x_mode()
3384 edchars.eof = CTRL_D; in x_mode()
3385 if (!edchars.werase) in x_mode()
3386 edchars.werase = CTRL_W; in x_mode()
3388 if (isedchar(edchars.erase)) { in x_mode()
3389 bind_if_not_bound(0, edchars.erase, XFUNC_del_back); in x_mode()
3390 bind_if_not_bound(1, edchars.erase, XFUNC_del_bword); in x_mode()
3392 if (isedchar(edchars.kill)) in x_mode()
3393 bind_if_not_bound(0, edchars.kill, XFUNC_del_line); in x_mode()
3394 if (isedchar(edchars.werase)) in x_mode()
3395 bind_if_not_bound(0, edchars.werase, XFUNC_del_bword); in x_mode()
3396 if (isedchar(edchars.intr)) in x_mode()
3397 bind_if_not_bound(0, edchars.intr, XFUNC_abort); in x_mode()
3398 if (isedchar(edchars.quit)) in x_mode()
3399 bind_if_not_bound(0, edchars.quit, XFUNC_noop); in x_mode()
3636 if (isched(c, edchars.intr) || in x_vi()
3637 isched(c, edchars.quit)) { in x_vi()
3644 x_intr(isched(c, edchars.intr) ? in x_vi()
3646 } else if (isched(c, edchars.eof) && in x_vi()
3840 } else if (isched(ch, edchars.erase) || ch == CTRL_H) { in vi_hook()
3851 } else if (isched(ch, edchars.kill)) { in vi_hook()
3857 } else if (isched(ch, edchars.werase)) { in vi_hook()
4013 if (isched(ch, edchars.erase) || ch == CTRL_H) { in vi_insert()
4039 if (isched(ch, edchars.kill)) { in vi_insert()
4050 if (isched(ch, edchars.werase)) { in vi_insert()
5563 edchars.erase = edchars.kill = edchars.intr = edchars.quit = in x_init()
5564 edchars.eof = EDCHAR_INITIAL; in x_init()
5565 edchars.werase = 027; in x_init()