Mercurial > vim
view src/proto/termlib.pro @ 16894:236c182c6300 v8.1.1448
patch 8.1.1448: statusline is sometimes drawn on top of popup
commit https://github.com/vim/vim/commit/988c43310a8dcfad9fbacd110b50ba220227d19a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 2 14:12:11 2019 +0200
patch 8.1.1448: statusline is sometimes drawn on top of popup
Problem: Statusline is sometimes drawn on top of popup.
Solution: Redraw popups after the statusline. (Naruhiko Nishino,
closes #4468)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 02 Jun 2019 14:15:06 +0200 |
parents | 21b0a39d13ed |
children |
line wrap: on
line source
/* termlib.c */ int tgetent(char *tbuf, char *term); int tgetflag(char *id); int tgetnum(char *id); char *tgetstr(char *id, char **buf); char *tgoto(char *cm, int col, int line); int tputs(char *cp, int affcnt, void (*outc)(unsigned int)); /* vim: set ft=c : */