blob: c0a567ba6c2573c09a1f471fed28ad0e920f3009 [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));
5void set_init_2 __ARGS((void));
6void set_init_3 __ARGS((void));
7void set_helplang_default __ARGS((char_u *lang));
8void init_gui_options __ARGS((void));
9void set_title_defaults __ARGS((void));
10int do_set __ARGS((char_u *arg, int opt_flags));
11void set_options_bin __ARGS((int oldval, int newval, int opt_flags));
12int get_viminfo_parameter __ARGS((int type));
13char_u *find_viminfo_parameter __ARGS((int type));
14void check_options __ARGS((void));
15void check_buf_options __ARGS((buf_T *buf));
16void free_string_option __ARGS((char_u *p));
17void clear_string_option __ARGS((char_u **pp));
18void set_term_option_alloced __ARGS((char_u **p));
19void set_string_option_direct __ARGS((char_u *name, int opt_idx, char_u *val, int opt_flags));
20char_u *check_stl_option __ARGS((char_u *s));
21int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags));
22void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags));
23char_u *get_term_code __ARGS((char_u *tname));
24char_u *get_highlight_default __ARGS((void));
25int makeset __ARGS((FILE *fd, int opt_flags, int local_only));
26int makefoldset __ARGS((FILE *fd));
27void clear_termoptions __ARGS((void));
28void set_term_defaults __ARGS((void));
29void comp_col __ARGS((void));
30char_u *get_equalprg __ARGS((void));
31void win_copy_options __ARGS((win_T *wp_from, win_T *wp_to));
32void copy_winopt __ARGS((winopt_T *from, winopt_T *to));
33void check_win_options __ARGS((win_T *win));
34void check_winopt __ARGS((winopt_T *wop));
35void clear_winopt __ARGS((winopt_T *wop));
36void buf_copy_options __ARGS((buf_T *buf, int flags));
37void reset_modifiable __ARGS((void));
38void set_iminsert_global __ARGS((void));
39void set_imsearch_global __ARGS((void));
40void set_context_in_set_cmd __ARGS((expand_T *xp, char_u *arg, int opt_flags));
41int ExpandSettings __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file));
42int ExpandOldSetting __ARGS((int *num_file, char_u ***file));
43int has_format_option __ARGS((int x));
44int shortmess __ARGS((int x));
45void vimrc_found __ARGS((void));
46void change_compatible __ARGS((int on));
47int option_was_set __ARGS((char_u *name));
48int can_bs __ARGS((int what));
49void save_file_ff __ARGS((buf_T *buf));
50int file_ff_differs __ARGS((buf_T *buf));
51int check_ff_value __ARGS((char_u *p));
52/* vim: set ft=c : */