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