comparison src/proto/ex_getln.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 684a15da9929
children 06a1dd50463e
comparison
equal deleted inserted replaced
18678:cb4a4b71df4a 18679:fd95d4dbeb37
1 /* ex_getln.c */ 1 /* ex_getln.c */
2 void cmdline_init(void); 2 void cmdline_init(void);
3 char_u *getcmdline(int firstc, long count, int indent, int do_concat); 3 char_u *getcmdline(int firstc, long count, int indent, int do_concat);
4 char_u *getcmdline_prompt(int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg); 4 char_u *getcmdline_prompt(int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg);
5 int check_opt_wim(void);
5 int text_locked(void); 6 int text_locked(void);
6 void text_locked_msg(void); 7 void text_locked_msg(void);
7 char *get_text_locked_msg(void); 8 char *get_text_locked_msg(void);
8 int curbuf_locked(void); 9 int curbuf_locked(void);
9 int allbuf_locked(void); 10 int allbuf_locked(void);
33 void f_setcmdpos(typval_T *argvars, typval_T *rettv); 34 void f_setcmdpos(typval_T *argvars, typval_T *rettv);
34 void f_getcmdtype(typval_T *argvars, typval_T *rettv); 35 void f_getcmdtype(typval_T *argvars, typval_T *rettv);
35 int get_cmdline_type(void); 36 int get_cmdline_type(void);
36 int get_cmdline_firstc(void); 37 int get_cmdline_firstc(void);
37 int get_list_range(char_u **str, int *num1, int *num2); 38 int get_list_range(char_u **str, int *num1, int *num2);
39 char *check_cedit(void);
38 char_u *script_get(exarg_T *eap, char_u *cmd); 40 char_u *script_get(exarg_T *eap, char_u *cmd);
39 void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret); 41 void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret);
40 /* vim: set ft=c : */ 42 /* vim: set ft=c : */