comparison src/proto/ui.pro @ 18679:fd95d4dbeb37 v8.1.2331

patch 8.1.2331: the option.c file is still very big Commit: https://github.com/vim/vim/commit/7bae0b1bc84a95d565ffab38cf7f82ad21c656b6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 21 22:14:18 2019 +0100 patch 8.1.2331: the option.c file is still very big Problem: The option.c file is still very big. Solution: Move a few functions to where they fit better. (Yegappan Lakshmanan, closes #4895)
author Bram Moolenaar <Bram@vim.org>
date Thu, 21 Nov 2019 22:15:03 +0100
parents 1868ec23360e
children 00a1b89256ea
comparison
equal deleted inserted replaced
18678:cb4a4b71df4a 18679:fd95d4dbeb37
33 void clip_scroll_selection(int rows); 33 void clip_scroll_selection(int rows);
34 void clip_copy_modeless_selection(int both); 34 void clip_copy_modeless_selection(int both);
35 void clip_gen_set_selection(Clipboard_T *cbd); 35 void clip_gen_set_selection(Clipboard_T *cbd);
36 void clip_gen_request_selection(Clipboard_T *cbd); 36 void clip_gen_request_selection(Clipboard_T *cbd);
37 int clip_gen_owner_exists(Clipboard_T *cbd); 37 int clip_gen_owner_exists(Clipboard_T *cbd);
38 char *check_clipboard_option(void);
38 int vim_is_input_buf_full(void); 39 int vim_is_input_buf_full(void);
39 int vim_is_input_buf_empty(void); 40 int vim_is_input_buf_empty(void);
40 int vim_free_in_input_buf(void); 41 int vim_free_in_input_buf(void);
41 int vim_used_in_input_buf(void); 42 int vim_used_in_input_buf(void);
42 char_u *get_input_buf(void); 43 char_u *get_input_buf(void);
43 void set_input_buf(char_u *p); 44 void set_input_buf(char_u *p);
44 void add_to_input_buf(char_u *s, int len); 45 void add_to_input_buf(char_u *s, int len);
45 void add_to_input_buf_csi(char_u *str, int len); 46 void add_to_input_buf_csi(char_u *str, int len);
46 void push_raw_key(char_u *s, int len);
47 void trash_input_buf(void); 47 void trash_input_buf(void);
48 int read_from_input_buf(char_u *buf, long maxlen); 48 int read_from_input_buf(char_u *buf, long maxlen);
49 void fill_input_buf(int exit_on_error); 49 void fill_input_buf(int exit_on_error);
50 void read_error_exit(void); 50 void read_error_exit(void);
51 void ui_cursor_shape_forced(int forced); 51 void ui_cursor_shape_forced(int forced);