Home
last modified time | relevance | path

Searched refs:ta_off (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dui.c73 static int ta_off; // offset for next char to use when ta_str != NULL variable
84 newlen += ta_len - ta_off; in ui_inchar_undo()
90 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off)); in ui_inchar_undo()
91 mch_memmove(new + ta_len - ta_off, s, (size_t)len); in ui_inchar_undo()
98 ta_off = 0; in ui_inchar_undo()
131 if (maxlen >= ta_len - ta_off) in ui_inchar()
133 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len); in ui_inchar()
137 mch_memmove(buf, ta_str + ta_off, (size_t)maxlen); in ui_inchar()
138 ta_off += maxlen; in ui_inchar()