Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 1 | /* optionstr.c */ |
| 2 | void didset_string_options(void); |
zeertzjq | 269aa2b | 2022-11-28 11:36:50 +0000 | [diff] [blame] | 3 | void trigger_optionset_string(int opt_idx, int opt_flags, char_u *oldval, char_u *oldval_l, char_u *oldval_g, char_u *newval); |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 4 | void check_buf_options(buf_T *buf); |
| 5 | void free_string_option(char_u *p); |
| 6 | void clear_string_option(char_u **pp); |
| 7 | void check_string_option(char_u **pp); |
| 8 | void set_string_option_direct(char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid); |
| 9 | void set_string_option_direct_in_win(win_T *wp, char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid); |
| 10 | void set_string_option_direct_in_buf(buf_T *buf, char_u *name, int opt_idx, char_u *val, int opt_flags, int set_sid); |
Mike Williams | 620f011 | 2023-12-05 15:36:06 +0100 | [diff] [blame] | 11 | char *set_string_option(int opt_idx, char_u *value, int opt_flags, char *errbuf, size_t errbuflen); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 12 | char *did_set_ambiwidth(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 13 | int expand_set_ambiwidth(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 14 | char *did_set_background(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 15 | int expand_set_background(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 16 | char *did_set_backspace(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 17 | int expand_set_backspace(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 18 | char *did_set_backupcopy(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 19 | int expand_set_backupcopy(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 20 | char *did_set_backupext_or_patchmode(optset_T *args); |
| 21 | char *did_set_belloff(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 22 | int expand_set_belloff(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 23 | char *did_set_breakindentopt(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 24 | int expand_set_breakindentopt(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 25 | char *did_set_browsedir(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 26 | int expand_set_browsedir(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 27 | char *did_set_bufhidden(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 28 | int expand_set_bufhidden(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 29 | char *did_set_buftype(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 30 | int expand_set_buftype(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 31 | char *did_set_casemap(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 32 | int expand_set_casemap(optexpand_T *args, int *numMatches, char_u ***matches); |
| 33 | int expand_set_clipboard(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | c6ff21e | 2023-03-02 14:46:48 +0000 | [diff] [blame] | 34 | char *did_set_chars_option(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 35 | int expand_set_chars_option(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 36 | char *did_set_cinoptions(optset_T *args); |
| 37 | char *did_set_colorcolumn(optset_T *args); |
| 38 | char *did_set_comments(optset_T *args); |
| 39 | char *did_set_commentstring(optset_T *args); |
| 40 | char *did_set_complete(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 41 | int expand_set_complete(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 42 | char *did_set_completeopt(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 43 | int expand_set_completeopt(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 44 | char *did_set_completepopup(optset_T *args); |
| 45 | char *did_set_completeslash(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 46 | int expand_set_completeslash(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 47 | char *did_set_concealcursor(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 48 | int expand_set_concealcursor(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 49 | char *did_set_cpoptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 50 | int expand_set_cpoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 51 | char *did_set_cryptkey(optset_T *args); |
| 52 | char *did_set_cryptmethod(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 53 | int expand_set_cryptmethod(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 54 | char *did_set_cscopequickfix(optset_T *args); |
| 55 | char *did_set_cursorlineopt(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 56 | int expand_set_cursorlineopt(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 57 | char *did_set_debug(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 58 | int expand_set_debug(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 59 | char *did_set_diffopt(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 60 | int expand_set_diffopt(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 61 | char *did_set_display(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 62 | int expand_set_display(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 63 | char *did_set_eadirection(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 64 | int expand_set_eadirection(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | c727b19 | 2023-03-03 12:26:15 +0000 | [diff] [blame] | 65 | char *did_set_encoding(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 66 | int expand_set_encoding(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 67 | char *did_set_eventignore(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 68 | int expand_set_eventignore(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 69 | char *did_set_fileformat(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 70 | int expand_set_fileformat(optexpand_T *args, int *numMatches, char_u ***matches); |
| 71 | char_u *get_fileformat_name(expand_T *xp, int idx); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 72 | char *did_set_fileformats(optset_T *args); |
| 73 | char *did_set_filetype_or_syntax(optset_T *args); |
| 74 | char *did_set_foldclose(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 75 | int expand_set_foldclose(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 76 | char *did_set_foldexpr(optset_T *args); |
| 77 | char *did_set_foldignore(optset_T *args); |
| 78 | char *did_set_foldmarker(optset_T *args); |
| 79 | char *did_set_foldmethod(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 80 | int expand_set_foldmethod(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 81 | char *did_set_foldopen(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 82 | int expand_set_foldopen(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 83 | char *did_set_formatoptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 84 | int expand_set_formatoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | 6d611de | 2023-02-25 11:59:33 +0000 | [diff] [blame] | 85 | char *did_set_guicursor(optset_T *args); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 86 | char *did_set_guifont(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 87 | int expand_set_guifont(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 88 | char *did_set_guifontset(optset_T *args); |
| 89 | char *did_set_guifontwide(optset_T *args); |
| 90 | char *did_set_guiligatures(optset_T *args); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 91 | char *did_set_guioptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 92 | int expand_set_guioptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 93 | char *did_set_guitablabel(optset_T *args); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 94 | char *did_set_helpfile(optset_T *args); |
| 95 | char *did_set_helplang(optset_T *args); |
| 96 | char *did_set_highlight(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 97 | int expand_set_highlight(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 98 | char *did_set_iconstring(optset_T *args); |
| 99 | char *did_set_imactivatekey(optset_T *args); |
| 100 | char *did_set_isopt(optset_T *args); |
Yegappan Lakshmanan | 8701825 | 2023-09-20 20:20:04 +0200 | [diff] [blame] | 101 | char *did_set_jumpoptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 102 | int expand_set_jumpoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 103 | char *did_set_keymap(optset_T *args); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 104 | char *did_set_keymodel(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 105 | int expand_set_keymodel(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 106 | char *did_set_keyprotocol(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 107 | int expand_set_keyprotocol(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 108 | char *did_set_lispoptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 109 | int expand_set_lispoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 110 | char *did_set_matchpairs(optset_T *args); |
| 111 | char *did_set_mkspellmem(optset_T *args); |
| 112 | char *did_set_mouse(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 113 | int expand_set_mouse(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 114 | char *did_set_mousemodel(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 115 | int expand_set_mousemodel(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 116 | char *did_set_mouseshape(optset_T *args); |
| 117 | char *did_set_nrformats(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 118 | int expand_set_nrformats(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 119 | char *did_set_optexpr(optset_T *args); |
| 120 | char *did_set_pastetoggle(optset_T *args); |
| 121 | char *did_set_previewpopup(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 122 | int expand_set_popupoption(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 123 | char *did_set_printencoding(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 124 | int expand_set_printoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 125 | char *did_set_renderoptions(optset_T *args); |
Yegappan Lakshmanan | 5da901b | 2023-02-27 12:47:47 +0000 | [diff] [blame] | 126 | char *did_set_rightleftcmd(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 127 | int expand_set_rightleftcmd(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 128 | char *did_set_rulerformat(optset_T *args); |
| 129 | char *did_set_scrollopt(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 130 | int expand_set_scrollopt(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 131 | char *did_set_selection(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 132 | int expand_set_selection(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 133 | char *did_set_selectmode(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 134 | int expand_set_selectmode(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 135 | char *did_set_sessionoptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 136 | int expand_set_sessionoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 137 | char *did_set_shortmess(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 138 | int expand_set_shortmess(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 139 | char *did_set_showbreak(optset_T *args); |
| 140 | char *did_set_showcmdloc(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 141 | int expand_set_showcmdloc(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 142 | char *did_set_signcolumn(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 143 | int expand_set_signcolumn(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 144 | char *did_set_spellcapcheck(optset_T *args); |
| 145 | char *did_set_spellfile(optset_T *args); |
| 146 | char *did_set_spelllang(optset_T *args); |
| 147 | char *did_set_spelloptions(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 148 | int expand_set_spelloptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 149 | char *did_set_spellsuggest(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 150 | int expand_set_spellsuggest(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 151 | char *did_set_splitkeep(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 152 | int expand_set_splitkeep(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 153 | char *did_set_statusline(optset_T *args); |
| 154 | char *did_set_swapsync(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 155 | int expand_set_swapsync(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 156 | char *did_set_switchbuf(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 157 | int expand_set_switchbuf(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 158 | char *did_set_tabline(optset_T *args); |
| 159 | char *did_set_tagcase(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 160 | int expand_set_tagcase(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | 5284b23 | 2023-03-04 19:57:32 +0000 | [diff] [blame] | 161 | char *did_set_term(optset_T *args); |
Yegappan Lakshmanan | c727b19 | 2023-03-03 12:26:15 +0000 | [diff] [blame] | 162 | char *did_set_term_option(optset_T *args); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 163 | char *did_set_termwinkey(optset_T *args); |
| 164 | char *did_set_termwinsize(optset_T *args); |
Yegappan Lakshmanan | 8ad862a | 2023-02-23 15:05:22 +0000 | [diff] [blame] | 165 | char *did_set_termwintype(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 166 | int expand_set_termwintype(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 167 | char *did_set_titlestring(optset_T *args); |
| 168 | char *did_set_toolbar(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 169 | int expand_set_toolbar(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 170 | char *did_set_toolbariconsize(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 171 | int expand_set_toolbariconsize(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 172 | char *did_set_ttymouse(optset_T *args); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 173 | int expand_set_ttymouse(optexpand_T *args, int *numMatches, char_u ***matches); |
Yegappan Lakshmanan | af93691 | 2023-02-20 12:16:39 +0000 | [diff] [blame] | 174 | char *did_set_varsofttabstop(optset_T *args); |
| 175 | char *did_set_vartabstop(optset_T *args); |
Yegappan Lakshmanan | ad60898 | 2023-03-01 12:44:06 +0000 | [diff] [blame] | 176 | char *did_set_verbosefile(optset_T *args); |
| 177 | char *did_set_viewoptions(optset_T *args); |
| 178 | char *did_set_viminfo(optset_T *args); |
| 179 | char *did_set_virtualedit(optset_T *args); |
Yee Cheng Chin | 900894b | 2023-09-29 20:42:32 +0200 | [diff] [blame] | 180 | int expand_set_virtualedit(optexpand_T *args, int *numMatches, char_u ***matches); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 181 | char *did_set_whichwrap(optset_T *args); |
Yee Cheng Chin | 900894b | 2023-09-29 20:42:32 +0200 | [diff] [blame] | 182 | int expand_set_whichwrap(optexpand_T *args, int *numMatches, char_u ***matches); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 183 | char *did_set_wildmode(optset_T *args); |
Yee Cheng Chin | 900894b | 2023-09-29 20:42:32 +0200 | [diff] [blame] | 184 | int expand_set_wildmode(optexpand_T *args, int *numMatches, char_u ***matches); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 185 | char *did_set_wildoptions(optset_T *args); |
Yee Cheng Chin | 900894b | 2023-09-29 20:42:32 +0200 | [diff] [blame] | 186 | int expand_set_wildoptions(optexpand_T *args, int *numMatches, char_u ***matches); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 187 | char *did_set_winaltkeys(optset_T *args); |
Yee Cheng Chin | 900894b | 2023-09-29 20:42:32 +0200 | [diff] [blame] | 188 | int expand_set_winaltkeys(optexpand_T *args, int *numMatches, char_u ***matches); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 189 | char *did_set_wincolor(optset_T *args); |
Yee Cheng Chin | 900894b | 2023-09-29 20:42:32 +0200 | [diff] [blame] | 190 | int expand_set_wincolor(optexpand_T *args, int *numMatches, char_u ***matches); |
Christian Brabandt | 6a950da | 2024-01-01 20:18:36 +0100 | [diff] [blame] | 191 | char *did_set_string_option(int opt_idx, char_u **varp, char_u *oldval, char_u *value, char *errbuf, size_t errbuflen, int opt_flags, set_op_T op, int *value_checked); |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 192 | int check_ff_value(char_u *p); |
Christian Brabandt | 9aee8ec | 2022-12-16 16:41:23 +0000 | [diff] [blame] | 193 | void save_clear_shm_value(void); |
| 194 | void restore_shm_value(void); |
Bram Moolenaar | dac1347 | 2019-09-16 21:06:21 +0200 | [diff] [blame] | 195 | /* vim: set ft=c : */ |