Searched refs:ta_buf (Results 1 – 4 of 4) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | os_unix.c | 4906 char_u ta_buf[BUFLEN + 1]; // TypeAHead in mch_call_shell_fork() local 5067 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); in mch_call_shell_fork() 5082 may_send_sigint(ta_buf[ta_len], pid, wpid); in mch_call_shell_fork() 5085 && ta_buf[ta_len] == Ctrl_D) in mch_call_shell_fork() 5102 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') in mch_call_shell_fork() 5103 msg_putchar(ta_buf[i]); in mch_call_shell_fork() 5106 int l = (*mb_ptr2len)(ta_buf + i); in mch_call_shell_fork() 5108 msg_outtrans_len(ta_buf + i, l); in mch_call_shell_fork() 5112 msg_outtrans_len(ta_buf + i, 1); in mch_call_shell_fork() 5135 mch_memmove(ta_buf, ta_buf + len, ta_len); in mch_call_shell_fork() [all …]
|
| H A D | os_win32.c | 4364 char_u ta_buf[BUFLEN + 1]; // TypeAHead in mch_system_piped() local 4483 len = ui_inchar(ta_buf, BUFLEN, 10L, 0); in mch_system_piped() 4493 if (ta_buf[ta_len] == Ctrl_C) in mch_system_piped() 4499 if (ta_buf[ta_len] == Ctrl_D) in mch_system_piped() 4514 if (ta_buf[i] == '\n' || ta_buf[i] == '\b') in mch_system_piped() 4515 msg_putchar(ta_buf[i]); in mch_system_piped() 4518 int l = (*mb_ptr2len)(ta_buf + i); in mch_system_piped() 4520 msg_outtrans_len(ta_buf + i, l); in mch_system_piped() 4524 msg_outtrans_len(ta_buf + i, 1); in mch_system_piped() 4549 mch_memmove(ta_buf, ta_buf + len, ta_len); in mch_system_piped() [all …]
|
| H A D | term.c | 6734 term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len) in term_replace_bs_del_keycode() argument 6741 if (ta_buf[i] == CSI && len - i > 2) in term_replace_bs_del_keycode() 6743 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); in term_replace_bs_del_keycode() 6746 mch_memmove(ta_buf + i + 1, ta_buf + i + 3, in term_replace_bs_del_keycode() 6749 ta_buf[i] = DEL; in term_replace_bs_del_keycode() 6751 ta_buf[i] = Ctrl_H; in term_replace_bs_del_keycode() 6755 else if (ta_buf[i] == '\r') in term_replace_bs_del_keycode() 6756 ta_buf[i] = '\n'; in term_replace_bs_del_keycode() 6758 i += (*mb_ptr2len_len)(ta_buf + i, ta_len + len - i) - 1; in term_replace_bs_del_keycode()
|
| /vim-8.2.3635/src/proto/ |
| H A D | term.pro | 88 void term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len);
|