Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | /* option.c */ |
Bram Moolenaar | ef26954 | 2016-01-19 13:22:12 +0100 | [diff] [blame] | 2 | void set_init_1(void); |
| 3 | void set_string_default(char *name, char_u *val); |
| 4 | void set_number_default(char *name, long val); |
| 5 | void free_all_options(void); |
| 6 | void set_init_2(void); |
| 7 | void set_init_3(void); |
| 8 | void set_helplang_default(char_u *lang); |
| 9 | void init_gui_options(void); |
| 10 | void set_title_defaults(void); |
| 11 | int do_set(char_u *arg, int opt_flags); |
| 12 | void set_options_bin(int oldval, int newval, int opt_flags); |
| 13 | int get_viminfo_parameter(int type); |
| 14 | char_u *find_viminfo_parameter(int type); |
| 15 | void check_options(void); |
| 16 | void check_buf_options(buf_T *buf); |
| 17 | void free_string_option(char_u *p); |
| 18 | void clear_string_option(char_u **pp); |
| 19 | void set_term_option_alloced(char_u **p); |
| 20 | int was_set_insecurely(char_u *opt, int opt_flags); |
| 21 | void set_string_option_direct(char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid); |
| 22 | char_u *check_colorcolumn(win_T *wp); |
| 23 | char_u *check_stl_option(char_u *s); |
| 24 | int get_option_value(char_u *name, long *numval, char_u **stringval, int opt_flags); |
| 25 | int get_option_value_strict(char_u *name, long *numval, char_u **stringval, int opt_type, void *from); |
| 26 | char_u *option_iter_next(void **option, int opt_type); |
| 27 | char_u *set_option_value(char_u *name, long number, char_u *string, int opt_flags); |
| 28 | char_u *get_term_code(char_u *tname); |
| 29 | char_u *get_highlight_default(void); |
| 30 | char_u *get_encoding_default(void); |
| 31 | int makeset(FILE *fd, int opt_flags, int local_only); |
| 32 | int makefoldset(FILE *fd); |
| 33 | void clear_termoptions(void); |
| 34 | void free_termoptions(void); |
| 35 | void free_one_termoption(char_u *var); |
| 36 | void set_term_defaults(void); |
| 37 | void comp_col(void); |
| 38 | void unset_global_local_option(char_u *name, void *from); |
| 39 | char_u *get_equalprg(void); |
| 40 | void win_copy_options(win_T *wp_from, win_T *wp_to); |
| 41 | void copy_winopt(winopt_T *from, winopt_T *to); |
| 42 | void check_win_options(win_T *win); |
| 43 | void clear_winopt(winopt_T *wop); |
| 44 | void buf_copy_options(buf_T *buf, int flags); |
| 45 | void reset_modifiable(void); |
| 46 | void set_iminsert_global(void); |
| 47 | void set_imsearch_global(void); |
| 48 | void set_context_in_set_cmd(expand_T *xp, char_u *arg, int opt_flags); |
| 49 | int ExpandSettings(expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file); |
| 50 | int ExpandOldSetting(int *num_file, char_u ***file); |
| 51 | int langmap_adjust_mb(int c); |
| 52 | int has_format_option(int x); |
| 53 | int shortmess(int x); |
| 54 | void vimrc_found(char_u *fname, char_u *envname); |
| 55 | void change_compatible(int on); |
| 56 | int option_was_set(char_u *name); |
| 57 | void reset_option_was_set(char_u *name); |
| 58 | int can_bs(int what); |
| 59 | void save_file_ff(buf_T *buf); |
| 60 | int file_ff_differs(buf_T *buf, int ignore_empty); |
| 61 | int check_ff_value(char_u *p); |
| 62 | long get_sw_value(buf_T *buf); |
| 63 | long get_sts_value(void); |
| 64 | void find_mps_values(int *initc, int *findc, int *backwards, int switchit); |
| 65 | unsigned int get_bkc_value(buf_T *buf); |
Bram Moolenaar | 95ec9d6 | 2016-08-12 18:29:59 +0200 | [diff] [blame] | 66 | int signcolumn_on(win_T *wp); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 67 | /* vim: set ft=c : */ |