Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 1 | /* drawscreen.c */ |
| 2 | int update_screen(int type_arg); |
Bram Moolenaar | 7528d1f | 2019-09-19 23:06:20 +0200 | [diff] [blame] | 3 | void showruler(int always); |
| 4 | void win_redr_ruler(win_T *wp, int always, int ignore_pum); |
| 5 | void after_updating_screen(int may_resize_shell); |
| 6 | void update_curbuf(int type); |
| 7 | void update_debug_sign(buf_T *buf, linenr_T lnum); |
| 8 | void updateWindow(win_T *wp); |
| 9 | int redraw_asap(int type); |
| 10 | void redraw_after_callback(int call_update_screen); |
| 11 | void redraw_later(int type); |
| 12 | void redraw_win_later(win_T *wp, int type); |
| 13 | void redraw_later_clear(void); |
| 14 | void redraw_all_later(int type); |
| 15 | void redraw_curbuf_later(int type); |
| 16 | void redraw_buf_later(buf_T *buf, int type); |
| 17 | void redraw_buf_line_later(buf_T *buf, linenr_T lnum); |
| 18 | void redraw_buf_and_status_later(buf_T *buf, int type); |
| 19 | void status_redraw_all(void); |
| 20 | void status_redraw_curbuf(void); |
| 21 | void redraw_statuslines(void); |
| 22 | void win_redraw_last_status(frame_T *frp); |
| 23 | void redrawWinline(win_T *wp, linenr_T lnum); |
| 24 | /* vim: set ft=c : */ |