• Home
  • Raw
  • Download

Lines Matching refs:edchars

53 } edchars;  variable
1787 *tmp = isedchar(edchars.eof) ? (unsigned char)edchars.eof : in x_end_of_text()
3332 edchars.erase = toedchar(tty_state.c_cc[VERASE]); in x_mode()
3333 edchars.kill = toedchar(tty_state.c_cc[VKILL]); in x_mode()
3334 edchars.intr = toedchar(tty_state.c_cc[VINTR]); in x_mode()
3335 edchars.quit = toedchar(tty_state.c_cc[VQUIT]); in x_mode()
3336 edchars.eof = toedchar(tty_state.c_cc[VEOF]); in x_mode()
3338 edchars.werase = toedchar(tty_state.c_cc[VWERASE]); in x_mode()
3340 edchars.werase = 0; in x_mode()
3343 if (!edchars.erase) in x_mode()
3344 edchars.erase = CTRL_H; in x_mode()
3345 if (!edchars.kill) in x_mode()
3346 edchars.kill = CTRL_U; in x_mode()
3347 if (!edchars.intr) in x_mode()
3348 edchars.intr = CTRL_C; in x_mode()
3349 if (!edchars.quit) in x_mode()
3350 edchars.quit = CTRL_BK; in x_mode()
3351 if (!edchars.eof) in x_mode()
3352 edchars.eof = CTRL_D; in x_mode()
3353 if (!edchars.werase) in x_mode()
3354 edchars.werase = CTRL_W; in x_mode()
3356 if (isedchar(edchars.erase)) { in x_mode()
3357 bind_if_not_bound(0, edchars.erase, XFUNC_del_back); in x_mode()
3358 bind_if_not_bound(1, edchars.erase, XFUNC_del_bword); in x_mode()
3360 if (isedchar(edchars.kill)) in x_mode()
3361 bind_if_not_bound(0, edchars.kill, XFUNC_del_line); in x_mode()
3362 if (isedchar(edchars.werase)) in x_mode()
3363 bind_if_not_bound(0, edchars.werase, XFUNC_del_bword); in x_mode()
3364 if (isedchar(edchars.intr)) in x_mode()
3365 bind_if_not_bound(0, edchars.intr, XFUNC_abort); in x_mode()
3366 if (isedchar(edchars.quit)) in x_mode()
3367 bind_if_not_bound(0, edchars.quit, XFUNC_noop); in x_mode()
3604 if (isched(c, edchars.intr) || in x_vi()
3605 isched(c, edchars.quit)) { in x_vi()
3612 x_intr(isched(c, edchars.intr) ? in x_vi()
3614 } else if (isched(c, edchars.eof) && in x_vi()
3804 } else if (isched(ch, edchars.erase) || ch == CTRL_H) { in vi_hook()
3815 } else if (isched(ch, edchars.kill)) { in vi_hook()
3821 } else if (isched(ch, edchars.werase)) { in vi_hook()
3975 if (isched(ch, edchars.erase) || ch == CTRL_H) { in vi_insert()
4001 if (isched(ch, edchars.kill)) { in vi_insert()
4012 if (isched(ch, edchars.werase)) { in vi_insert()
5525 edchars.erase = edchars.kill = edchars.intr = edchars.quit = in x_init()
5526 edchars.eof = EDCHAR_INITIAL; in x_init()
5527 edchars.werase = 027; in x_init()