Mercurial > vim
annotate src/proto/option.pro @ 2811:5381eb5b1eb9 v7.3.181
updated for version 7.3.181
Problem: When repeating the insert of CTRL-V or a digraph the display may
not be updated correctly.
Solution: Only call edit_unputchar() after edit_putchar(). (Lech Lorens)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 10 May 2011 14:22:16 +0200 |
parents | 862d920800b1 |
children | 7de7ef01288d |
rev | line source |
---|---|
7 | 1 /* option.c */ |
1121 | 2 void set_init_1 __ARGS((void)); |
3 void set_string_default __ARGS((char *name, char_u *val)); | |
4 void set_number_default __ARGS((char *name, long val)); | |
5 void free_all_options __ARGS((void)); | |
6 void set_init_2 __ARGS((void)); | |
7 void set_init_3 __ARGS((void)); | |
8 void set_helplang_default __ARGS((char_u *lang)); | |
9 void init_gui_options __ARGS((void)); | |
10 void set_title_defaults __ARGS((void)); | |
11 int do_set __ARGS((char_u *arg, int opt_flags)); | |
12 void set_options_bin __ARGS((int oldval, int newval, int opt_flags)); | |
13 int get_viminfo_parameter __ARGS((int type)); | |
14 char_u *find_viminfo_parameter __ARGS((int type)); | |
15 void check_options __ARGS((void)); | |
16 void check_buf_options __ARGS((buf_T *buf)); | |
17 void free_string_option __ARGS((char_u *p)); | |
18 void clear_string_option __ARGS((char_u **pp)); | |
19 void set_term_option_alloced __ARGS((char_u **p)); | |
20 int was_set_insecurely __ARGS((char_u *opt, int opt_flags)); | |
21 void set_string_option_direct __ARGS((char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid)); | |
2314
233eb4412f5d
Added 'colorcolumn' option. Partly by Gregor Uhlenheuer.
Bram Moolenaar <bram@vim.org>
parents:
1941
diff
changeset
|
22 char_u *check_colorcolumn __ARGS((win_T *wp)); |
1121 | 23 char_u *check_stl_option __ARGS((char_u *s)); |
24 int get_option_value __ARGS((char_u *name, long *numval, char_u **stringval, int opt_flags)); | |
25 void set_option_value __ARGS((char_u *name, long number, char_u *string, int opt_flags)); | |
26 char_u *get_term_code __ARGS((char_u *tname)); | |
27 char_u *get_highlight_default __ARGS((void)); | |
28 char_u *get_encoding_default __ARGS((void)); | |
29 int makeset __ARGS((FILE *fd, int opt_flags, int local_only)); | |
30 int makefoldset __ARGS((FILE *fd)); | |
31 void clear_termoptions __ARGS((void)); | |
32 void free_termoptions __ARGS((void)); | |
1941 | 33 void free_one_termoption __ARGS((char_u *var)); |
1121 | 34 void set_term_defaults __ARGS((void)); |
35 void comp_col __ARGS((void)); | |
36 char_u *get_equalprg __ARGS((void)); | |
37 void win_copy_options __ARGS((win_T *wp_from, win_T *wp_to)); | |
38 void copy_winopt __ARGS((winopt_T *from, winopt_T *to)); | |
39 void check_win_options __ARGS((win_T *win)); | |
40 void check_winopt __ARGS((winopt_T *wop)); | |
41 void clear_winopt __ARGS((winopt_T *wop)); | |
42 void buf_copy_options __ARGS((buf_T *buf, int flags)); | |
43 void reset_modifiable __ARGS((void)); | |
44 void set_iminsert_global __ARGS((void)); | |
45 void set_imsearch_global __ARGS((void)); | |
46 void set_context_in_set_cmd __ARGS((expand_T *xp, char_u *arg, int opt_flags)); | |
47 int ExpandSettings __ARGS((expand_T *xp, regmatch_T *regmatch, int *num_file, char_u ***file)); | |
48 int ExpandOldSetting __ARGS((int *num_file, char_u ***file)); | |
1811 | 49 int langmap_adjust_mb __ARGS((int c)); |
1121 | 50 int has_format_option __ARGS((int x)); |
51 int shortmess __ARGS((int x)); | |
52 void vimrc_found __ARGS((char_u *fname, char_u *envname)); | |
53 void change_compatible __ARGS((int on)); | |
54 int option_was_set __ARGS((char_u *name)); | |
55 int can_bs __ARGS((int what)); | |
56 void save_file_ff __ARGS((buf_T *buf)); | |
2685 | 57 int file_ff_differs __ARGS((buf_T *buf, int ignore_empty)); |
1121 | 58 int check_ff_value __ARGS((char_u *p)); |
7 | 59 /* vim: set ft=c : */ |