blob: faeec632fa28072a48ba6ccda1faf9944bc02139 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* option.c */
2void set_init_1 __ARGS((void));
3void set_string_default __ARGS((char *name, char_u *val));
4void set_number_default __ARGS((char *name, long val));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00005void free_all_options __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006void set_init_2 __ARGS((void));
7void set_init_3 __ARGS((void));
8void set_helplang_default __ARGS((char_u *lang));
9void init_gui_options __ARGS((void));
10void set_title_defaults __ARGS((void));
11int do_set __ARGS((char_u *arg, int opt_flags));
12void set_options_bin __ARGS((int oldval, int newval, int opt_flags));
13int get_viminfo_parameter __ARGS((int type));
14char_u *find_viminfo_parameter __ARGS((int type));
15void check_options __ARGS((void));
16void check_buf_options __ARGS((buf_T *buf));
17void free_string_option __ARGS((char_u *p));
18void clear_string_option __ARGS((char_u **pp));
19void set_term_option_alloced __ARGS((char_u **p));
Bram Moolenaard1f56e62006-02-22 21:25:37 +000020int was_set_insecurely __ARGS((char_u *opt, int opt_flags));
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +000021void set_string_option_direct __ARGS((char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid));
Bram Moolenaar071d4272004-06-13 20:20:40 +000022char_u *check_stl_option __ARGS((char_u *s));
Bram Moolenaard1f56e62006-02-22 21:25:37 +000023void set_option_scriptID __ARGS((char_u *name, int id));
Bram Moolenaar071d4272004-06-13 20:20:40 +000024int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags));
25void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags));
26char_u *get_term_code __ARGS((char_u *tname));
27char_u *get_highlight_default __ARGS((void));
Bram Moolenaar1cd871b2004-12-19 22:46:22 +000028char_u *get_encoding_default __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000029int makeset __ARGS((FILE *fd, int opt_flags, int local_only));
30int makefoldset __ARGS((FILE *fd));
31void clear_termoptions __ARGS((void));
Bram Moolenaarf461c8e2005-06-25 23:04:51 +000032void free_termoptions __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +000033void set_term_defaults __ARGS((void));
34void comp_col __ARGS((void));
35char_u *get_equalprg __ARGS((void));
36void win_copy_options __ARGS((win_T *wp_from, win_T *wp_to));
37void copy_winopt __ARGS((winopt_T *from, winopt_T *to));
38void check_win_options __ARGS((win_T *win));
39void check_winopt __ARGS((winopt_T *wop));
40void clear_winopt __ARGS((winopt_T *wop));
41void buf_copy_options __ARGS((buf_T *buf, int flags));
42void reset_modifiable __ARGS((void));
43void set_iminsert_global __ARGS((void));
44void set_imsearch_global __ARGS((void));
45void set_context_in_set_cmd __ARGS((expand_T *xp, char_u *arg, int opt_flags));
46int ExpandSettings __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
47int ExpandOldSetting __ARGS((int *num_file, char_u ***file));
48int has_format_option __ARGS((int x));
49int shortmess __ARGS((int x));
50void vimrc_found __ARGS((void));
51void change_compatible __ARGS((int on));
52int option_was_set __ARGS((char_u *name));
53int can_bs __ARGS((int what));
54void save_file_ff __ARGS((buf_T *buf));
55int file_ff_differs __ARGS((buf_T *buf));
56int check_ff_value __ARGS((char_u *p));
57/* vim: set ft=c : */