blob: c83501986b56648840806e8c6439ccaeb2974057 [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);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +02004void showruler(int always);
5void win_redr_ruler(win_T *wp, int always, int ignore_pum);
6void after_updating_screen(int may_resize_shell);
7void update_curbuf(int type);
8void update_debug_sign(buf_T *buf, linenr_T lnum);
9void updateWindow(win_T *wp);
10int redraw_asap(int type);
Bram Moolenaare5050712021-12-09 10:51:05 +000011void redraw_after_callback(int call_update_screen, int do_message);
Bram Moolenaar7528d1f2019-09-19 23:06:20 +020012void redraw_later(int type);
13void redraw_win_later(win_T *wp, int type);
14void redraw_later_clear(void);
15void redraw_all_later(int type);
16void redraw_curbuf_later(int type);
17void redraw_buf_later(buf_T *buf, int type);
18void redraw_buf_line_later(buf_T *buf, linenr_T lnum);
19void redraw_buf_and_status_later(buf_T *buf, int type);
20void status_redraw_all(void);
21void status_redraw_curbuf(void);
22void redraw_statuslines(void);
23void win_redraw_last_status(frame_T *frp);
24void redrawWinline(win_T *wp, linenr_T lnum);
25/* vim: set ft=c : */