Lines Matching refs:showcmd_buf
1805 static char_u showcmd_buf[SHOWCMD_BUFLEN]; variable
1858 sprintf((char *)showcmd_buf, "%ldx%ld", lines, in clear_showcmd()
1862 sprintf((char *)showcmd_buf, "%ld", lines); in clear_showcmd()
1894 sprintf((char *)showcmd_buf, "%d", chars); in clear_showcmd()
1896 sprintf((char *)showcmd_buf, "%d-%d", chars, bytes); in clear_showcmd()
1898 showcmd_buf[SHOWCMD_COLS] = NUL; // truncate in clear_showcmd()
1903 showcmd_buf[0] = NUL; in clear_showcmd()
1947 showcmd_buf[0] = NUL; in add_to_showcmd()
1960 old_len = (int)STRLEN(showcmd_buf); in add_to_showcmd()
1964 mch_memmove(showcmd_buf, showcmd_buf + overflow, in add_to_showcmd()
1966 STRCAT(showcmd_buf, p); in add_to_showcmd()
1994 old_len = (int)STRLEN(showcmd_buf); in del_from_showcmd()
1997 showcmd_buf[old_len - len] = NUL; in del_from_showcmd()
2011 STRCPY(old_showcmd_buf, showcmd_buf); in push_showcmd()
2020 STRCPY(showcmd_buf, old_showcmd_buf); in pop_showcmd()
2032 len = (int)STRLEN(showcmd_buf); in display_showcmd()
2037 screen_puts(showcmd_buf, (int)Rows - 1, sc_col, 0); in display_showcmd()