blob: 6fa5e2c4511dd13ef30f5cf1bf0bef998f586dc6 [file] [log] [blame]
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02001/* drawscreen.c */
2int update_screen(int type_arg);
Bram Moolenaar49c51b82021-04-01 16:16:18 +02003int statusline_row(win_T *wp);
Luuk van Baalba936f62022-12-15 13:15:39 +00004void win_redr_status(win_T *wp, int ignore_pum);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02005void showruler(int always);
6void win_redr_ruler(win_T *wp, int always, int ignore_pum);
7void after_updating_screen(int may_resize_shell);
8void update_curbuf(int type);
9void update_debug_sign(buf_T *buf, linenr_T lnum);
10void updateWindow(win_T *wp);
11int redraw_asap(int type);
Bram Moolenaare5050712021-12-09 10:51:05 +000012void redraw_after_callback(int call_update_screen, int do_message);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +020013void redraw_later(int type);
14void redraw_win_later(win_T *wp, int type);
15void redraw_later_clear(void);
16void redraw_all_later(int type);
Bram Moolenaar471c0fa2022-08-22 15:19:16 +010017void set_must_redraw(int type);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +020018void redraw_curbuf_later(int type);
19void redraw_buf_later(buf_T *buf, int type);
20void redraw_buf_line_later(buf_T *buf, linenr_T lnum);
21void redraw_buf_and_status_later(buf_T *buf, int type);
22void status_redraw_all(void);
23void status_redraw_curbuf(void);
24void redraw_statuslines(void);
25void win_redraw_last_status(frame_T *frp);
26void redrawWinline(win_T *wp, linenr_T lnum);
27/* vim: set ft=c : */