comparison src/proto/drawscreen.pro @ 18124:2a806e3c39f6 v8.1.2057

patch 8.1.2057: the screen.c file is much too big Commit: https://github.com/vim/vim/commit/7528d1f6b5422750eb778dfb550cfd0b0e540964 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 19 23:06:20 2019 +0200 patch 8.1.2057: the screen.c file is much too big Problem: The screen.c file is much too big. Solution: Split it in three parts. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4943)
author Bram Moolenaar <Bram@vim.org>
date Thu, 19 Sep 2019 23:15:05 +0200
parents
children dcec86d796bc
comparison
equal deleted inserted replaced
18123:ceb4be0b23c7 18124:2a806e3c39f6
1 /* drawscreen.c */
2 int update_screen(int type_arg);
3 void win_redr_status(win_T *wp, int ignore_pum);
4 void showruler(int always);
5 void win_redr_ruler(win_T *wp, int always, int ignore_pum);
6 void after_updating_screen(int may_resize_shell);
7 void update_curbuf(int type);
8 void update_debug_sign(buf_T *buf, linenr_T lnum);
9 void updateWindow(win_T *wp);
10 int redraw_asap(int type);
11 void redraw_after_callback(int call_update_screen);
12 void redraw_later(int type);
13 void redraw_win_later(win_T *wp, int type);
14 void redraw_later_clear(void);
15 void redraw_all_later(int type);
16 void redraw_curbuf_later(int type);
17 void redraw_buf_later(buf_T *buf, int type);
18 void redraw_buf_line_later(buf_T *buf, linenr_T lnum);
19 void redraw_buf_and_status_later(buf_T *buf, int type);
20 void status_redraw_all(void);
21 void status_redraw_curbuf(void);
22 void redraw_statuslines(void);
23 void win_redraw_last_status(frame_T *frp);
24 void redrawWinline(win_T *wp, linenr_T lnum);
25 /* vim: set ft=c : */