Home
last modified time | relevance | path

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

/vim-8.2.3635/src/libvterm/src/
H A Dstate.c87 …state->combine_chars = vterm_allocator_malloc(state->vt, state->combine_chars_size * sizeof(state-… in vterm_state_new()
109 vterm_allocator_free(state->vt, state->combine_chars); in vterm_state_free()
185 vterm_allocator_free(state->vt, state->combine_chars); in grow_combine_buffer()
187 state->combine_chars = new_chars; in grow_combine_buffer()
324 printf("U+%04x ", state->combine_chars[printpos]); in on_text()
330 while(state->combine_chars[saved_i]) in on_text()
337 state->combine_chars[saved_i++] = codepoints[i++]; in on_text()
341 state->combine_chars[saved_i] = 0; in on_text()
344 for(; state->combine_chars[printpos]; printpos++) in on_text()
430 state->combine_chars[save_i] = chars[save_i]; in on_text()
[all …]
H A Dvterm_internal.h106 uint32_t *combine_chars; member