Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
| 2 | * |
| 3 | * VIM - Vi IMproved by Bram Moolenaar |
| 4 | * |
| 5 | * Do ":help uganda" in Vim to read copying and usage conditions. |
| 6 | * Do ":help credits" in Vim to see a list of people who contributed. |
| 7 | * See README.txt for an overview of the Vim source code. |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * autocmd.c: Autocommand related functions |
| 12 | */ |
| 13 | |
| 14 | #include "vim.h" |
| 15 | |
| 16 | /* |
| 17 | * The autocommands are stored in a list for each event. |
| 18 | * Autocommands for the same pattern, that are consecutive, are joined |
| 19 | * together, to avoid having to match the pattern too often. |
| 20 | * The result is an array of Autopat lists, which point to AutoCmd lists: |
| 21 | * |
| 22 | * last_autopat[0] -----------------------------+ |
| 23 | * V |
| 24 | * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL |
| 25 | * Autopat.cmds Autopat.cmds |
| 26 | * | | |
| 27 | * V V |
| 28 | * AutoCmd.next AutoCmd.next |
| 29 | * | | |
| 30 | * V V |
| 31 | * AutoCmd.next NULL |
| 32 | * | |
| 33 | * V |
| 34 | * NULL |
| 35 | * |
| 36 | * last_autopat[1] --------+ |
| 37 | * V |
| 38 | * first_autopat[1] --> Autopat.next --> NULL |
| 39 | * Autopat.cmds |
| 40 | * | |
| 41 | * V |
| 42 | * AutoCmd.next |
| 43 | * | |
| 44 | * V |
| 45 | * NULL |
| 46 | * etc. |
| 47 | * |
| 48 | * The order of AutoCmds is important, this is the order in which they were |
| 49 | * defined and will have to be executed. |
| 50 | */ |
| 51 | typedef struct AutoCmd |
| 52 | { |
| 53 | char_u *cmd; // The command to be executed (NULL |
| 54 | // when command has been removed). |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 55 | char once; // "One shot": removed after execution |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 56 | char nested; // If autocommands nest here. |
| 57 | char last; // last command in list |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 58 | sctx_T script_ctx; // script context where defined |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 59 | struct AutoCmd *next; // next AutoCmd in list |
| 60 | } AutoCmd; |
| 61 | |
| 62 | typedef struct AutoPat |
| 63 | { |
| 64 | struct AutoPat *next; // Next AutoPat in AutoPat list; MUST |
| 65 | // be the first entry. |
| 66 | char_u *pat; // pattern as typed (NULL when pattern |
| 67 | // has been removed) |
| 68 | regprog_T *reg_prog; // compiled regprog for pattern |
| 69 | AutoCmd *cmds; // list of commands to do |
| 70 | int group; // group ID |
| 71 | int patlen; // strlen() of pat |
| 72 | int buflocal_nr; // !=0 for buffer-local AutoPat |
| 73 | char allow_dirs; // Pattern may match whole path |
| 74 | char last; // last pattern for apply_autocmds() |
| 75 | } AutoPat; |
| 76 | |
| 77 | static struct event_name |
| 78 | { |
| 79 | char *name; // event name |
| 80 | event_T event; // event number |
| 81 | } event_names[] = |
| 82 | { |
| 83 | {"BufAdd", EVENT_BUFADD}, |
| 84 | {"BufCreate", EVENT_BUFADD}, |
| 85 | {"BufDelete", EVENT_BUFDELETE}, |
| 86 | {"BufEnter", EVENT_BUFENTER}, |
| 87 | {"BufFilePost", EVENT_BUFFILEPOST}, |
| 88 | {"BufFilePre", EVENT_BUFFILEPRE}, |
| 89 | {"BufHidden", EVENT_BUFHIDDEN}, |
| 90 | {"BufLeave", EVENT_BUFLEAVE}, |
| 91 | {"BufNew", EVENT_BUFNEW}, |
| 92 | {"BufNewFile", EVENT_BUFNEWFILE}, |
| 93 | {"BufRead", EVENT_BUFREADPOST}, |
| 94 | {"BufReadCmd", EVENT_BUFREADCMD}, |
| 95 | {"BufReadPost", EVENT_BUFREADPOST}, |
| 96 | {"BufReadPre", EVENT_BUFREADPRE}, |
| 97 | {"BufUnload", EVENT_BUFUNLOAD}, |
| 98 | {"BufWinEnter", EVENT_BUFWINENTER}, |
| 99 | {"BufWinLeave", EVENT_BUFWINLEAVE}, |
| 100 | {"BufWipeout", EVENT_BUFWIPEOUT}, |
| 101 | {"BufWrite", EVENT_BUFWRITEPRE}, |
| 102 | {"BufWritePost", EVENT_BUFWRITEPOST}, |
| 103 | {"BufWritePre", EVENT_BUFWRITEPRE}, |
| 104 | {"BufWriteCmd", EVENT_BUFWRITECMD}, |
| 105 | {"CmdlineChanged", EVENT_CMDLINECHANGED}, |
| 106 | {"CmdlineEnter", EVENT_CMDLINEENTER}, |
| 107 | {"CmdlineLeave", EVENT_CMDLINELEAVE}, |
| 108 | {"CmdwinEnter", EVENT_CMDWINENTER}, |
| 109 | {"CmdwinLeave", EVENT_CMDWINLEAVE}, |
| 110 | {"CmdUndefined", EVENT_CMDUNDEFINED}, |
| 111 | {"ColorScheme", EVENT_COLORSCHEME}, |
| 112 | {"ColorSchemePre", EVENT_COLORSCHEMEPRE}, |
Bram Moolenaar | d7f246c | 2019-04-08 18:15:41 +0200 | [diff] [blame] | 113 | {"CompleteChanged", EVENT_COMPLETECHANGED}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 114 | {"CompleteDone", EVENT_COMPLETEDONE}, |
Bram Moolenaar | 3f169ce | 2020-01-26 22:43:31 +0100 | [diff] [blame] | 115 | {"CompleteDonePre", EVENT_COMPLETEDONEPRE}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 116 | {"CursorHold", EVENT_CURSORHOLD}, |
| 117 | {"CursorHoldI", EVENT_CURSORHOLDI}, |
| 118 | {"CursorMoved", EVENT_CURSORMOVED}, |
| 119 | {"CursorMovedI", EVENT_CURSORMOVEDI}, |
| 120 | {"DiffUpdated", EVENT_DIFFUPDATED}, |
| 121 | {"DirChanged", EVENT_DIRCHANGED}, |
| 122 | {"EncodingChanged", EVENT_ENCODINGCHANGED}, |
| 123 | {"ExitPre", EVENT_EXITPRE}, |
| 124 | {"FileEncoding", EVENT_ENCODINGCHANGED}, |
| 125 | {"FileAppendPost", EVENT_FILEAPPENDPOST}, |
| 126 | {"FileAppendPre", EVENT_FILEAPPENDPRE}, |
| 127 | {"FileAppendCmd", EVENT_FILEAPPENDCMD}, |
| 128 | {"FileChangedShell",EVENT_FILECHANGEDSHELL}, |
| 129 | {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST}, |
| 130 | {"FileChangedRO", EVENT_FILECHANGEDRO}, |
| 131 | {"FileReadPost", EVENT_FILEREADPOST}, |
| 132 | {"FileReadPre", EVENT_FILEREADPRE}, |
| 133 | {"FileReadCmd", EVENT_FILEREADCMD}, |
| 134 | {"FileType", EVENT_FILETYPE}, |
| 135 | {"FileWritePost", EVENT_FILEWRITEPOST}, |
| 136 | {"FileWritePre", EVENT_FILEWRITEPRE}, |
| 137 | {"FileWriteCmd", EVENT_FILEWRITECMD}, |
| 138 | {"FilterReadPost", EVENT_FILTERREADPOST}, |
| 139 | {"FilterReadPre", EVENT_FILTERREADPRE}, |
| 140 | {"FilterWritePost", EVENT_FILTERWRITEPOST}, |
| 141 | {"FilterWritePre", EVENT_FILTERWRITEPRE}, |
| 142 | {"FocusGained", EVENT_FOCUSGAINED}, |
| 143 | {"FocusLost", EVENT_FOCUSLOST}, |
| 144 | {"FuncUndefined", EVENT_FUNCUNDEFINED}, |
| 145 | {"GUIEnter", EVENT_GUIENTER}, |
| 146 | {"GUIFailed", EVENT_GUIFAILED}, |
| 147 | {"InsertChange", EVENT_INSERTCHANGE}, |
| 148 | {"InsertEnter", EVENT_INSERTENTER}, |
| 149 | {"InsertLeave", EVENT_INSERTLEAVE}, |
Bram Moolenaar | b53e13a | 2020-10-21 12:19:53 +0200 | [diff] [blame] | 150 | {"InsertLeavePre", EVENT_INSERTLEAVEPRE}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 151 | {"InsertCharPre", EVENT_INSERTCHARPRE}, |
| 152 | {"MenuPopup", EVENT_MENUPOPUP}, |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 153 | {"ModeChanged", EVENT_MODECHANGED}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 154 | {"OptionSet", EVENT_OPTIONSET}, |
| 155 | {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST}, |
| 156 | {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE}, |
| 157 | {"QuitPre", EVENT_QUITPRE}, |
| 158 | {"RemoteReply", EVENT_REMOTEREPLY}, |
Bram Moolenaar | 8aeec40 | 2019-09-15 23:02:04 +0200 | [diff] [blame] | 159 | {"SafeState", EVENT_SAFESTATE}, |
Bram Moolenaar | 69198cb | 2019-09-16 21:58:13 +0200 | [diff] [blame] | 160 | {"SafeStateAgain", EVENT_SAFESTATEAGAIN}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 161 | {"SessionLoadPost", EVENT_SESSIONLOADPOST}, |
| 162 | {"ShellCmdPost", EVENT_SHELLCMDPOST}, |
| 163 | {"ShellFilterPost", EVENT_SHELLFILTERPOST}, |
Bram Moolenaar | be5ee86 | 2020-06-10 20:56:58 +0200 | [diff] [blame] | 164 | {"SigUSR1", EVENT_SIGUSR1}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 165 | {"SourceCmd", EVENT_SOURCECMD}, |
| 166 | {"SourcePre", EVENT_SOURCEPRE}, |
| 167 | {"SourcePost", EVENT_SOURCEPOST}, |
| 168 | {"SpellFileMissing",EVENT_SPELLFILEMISSING}, |
| 169 | {"StdinReadPost", EVENT_STDINREADPOST}, |
| 170 | {"StdinReadPre", EVENT_STDINREADPRE}, |
| 171 | {"SwapExists", EVENT_SWAPEXISTS}, |
| 172 | {"Syntax", EVENT_SYNTAX}, |
| 173 | {"TabNew", EVENT_TABNEW}, |
| 174 | {"TabClosed", EVENT_TABCLOSED}, |
| 175 | {"TabEnter", EVENT_TABENTER}, |
| 176 | {"TabLeave", EVENT_TABLEAVE}, |
| 177 | {"TermChanged", EVENT_TERMCHANGED}, |
| 178 | {"TerminalOpen", EVENT_TERMINALOPEN}, |
Bram Moolenaar | 28ed4df | 2019-10-26 16:21:40 +0200 | [diff] [blame] | 179 | {"TerminalWinOpen", EVENT_TERMINALWINOPEN}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 180 | {"TermResponse", EVENT_TERMRESPONSE}, |
| 181 | {"TextChanged", EVENT_TEXTCHANGED}, |
| 182 | {"TextChangedI", EVENT_TEXTCHANGEDI}, |
| 183 | {"TextChangedP", EVENT_TEXTCHANGEDP}, |
| 184 | {"User", EVENT_USER}, |
| 185 | {"VimEnter", EVENT_VIMENTER}, |
| 186 | {"VimLeave", EVENT_VIMLEAVE}, |
| 187 | {"VimLeavePre", EVENT_VIMLEAVEPRE}, |
| 188 | {"WinNew", EVENT_WINNEW}, |
naohiro ono | 23beefe | 2021-11-13 12:38:49 +0000 | [diff] [blame] | 189 | {"WinClosed", EVENT_WINCLOSED}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 190 | {"WinEnter", EVENT_WINENTER}, |
| 191 | {"WinLeave", EVENT_WINLEAVE}, |
| 192 | {"VimResized", EVENT_VIMRESIZED}, |
| 193 | {"TextYankPost", EVENT_TEXTYANKPOST}, |
Bram Moolenaar | 100118c | 2020-12-11 19:30:34 +0100 | [diff] [blame] | 194 | {"VimSuspend", EVENT_VIMSUSPEND}, |
| 195 | {"VimResume", EVENT_VIMRESUME}, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 196 | {NULL, (event_T)0} |
| 197 | }; |
| 198 | |
| 199 | static AutoPat *first_autopat[NUM_EVENTS] = |
| 200 | { |
| 201 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 202 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 203 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 204 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 205 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 206 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL |
| 207 | }; |
| 208 | |
| 209 | static AutoPat *last_autopat[NUM_EVENTS] = |
| 210 | { |
| 211 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 212 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 213 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 214 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 215 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
| 216 | NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL |
| 217 | }; |
| 218 | |
| 219 | #define AUGROUP_DEFAULT -1 // default autocmd group |
| 220 | #define AUGROUP_ERROR -2 // erroneous autocmd group |
| 221 | #define AUGROUP_ALL -3 // all autocmd groups |
| 222 | |
| 223 | /* |
| 224 | * struct used to keep status while executing autocommands for an event. |
| 225 | */ |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 226 | struct AutoPatCmd_S |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 227 | { |
| 228 | AutoPat *curpat; // next AutoPat to examine |
| 229 | AutoCmd *nextcmd; // next AutoCmd to execute |
| 230 | int group; // group being used |
| 231 | char_u *fname; // fname to match with |
| 232 | char_u *sfname; // sfname to match with |
| 233 | char_u *tail; // tail of fname |
| 234 | event_T event; // current event |
| 235 | int arg_bufnr; // Initially equal to <abuf>, set to zero when |
| 236 | // buf is deleted. |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 237 | AutoPatCmd *next; // chain of active apc-s for auto-invalidation |
| 238 | }; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 239 | |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 240 | static AutoPatCmd *active_apc_list = NULL; // stack of active autocommands |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 241 | |
Bram Moolenaar | aeea721 | 2020-04-02 18:50:46 +0200 | [diff] [blame] | 242 | // Macro to loop over all the patterns for an autocmd event |
| 243 | #define FOR_ALL_AUTOCMD_PATTERNS(event, ap) \ |
| 244 | for ((ap) = first_autopat[(int)(event)]; (ap) != NULL; (ap) = (ap)->next) |
| 245 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 246 | /* |
| 247 | * augroups stores a list of autocmd group names. |
| 248 | */ |
| 249 | static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL}; |
| 250 | #define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i]) |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 251 | // use get_deleted_augroup() to get this |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 252 | static char_u *deleted_augroup = NULL; |
| 253 | |
| 254 | /* |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 255 | * The ID of the current group. Group 0 is the default one. |
| 256 | */ |
| 257 | static int current_augroup = AUGROUP_DEFAULT; |
| 258 | |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 259 | static int au_need_clean = FALSE; // need to delete marked patterns |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 260 | |
| 261 | static char_u *event_nr2name(event_T event); |
| 262 | static int au_get_grouparg(char_u **argp); |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 263 | static int do_autocmd_event(event_T event, char_u *pat, int once, int nested, char_u *cmd, int forceit, int group, int flags); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 264 | static int apply_autocmds_group(event_T event, char_u *fname, char_u *fname_io, int force, int group, buf_T *buf, exarg_T *eap); |
| 265 | static void auto_next_pat(AutoPatCmd *apc, int stop_at_last); |
| 266 | static int au_find_group(char_u *name); |
| 267 | |
| 268 | static event_T last_event; |
| 269 | static int last_group; |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 270 | static int autocmd_blocked = 0; // block all autocmds |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 271 | |
| 272 | static char_u * |
| 273 | get_deleted_augroup(void) |
| 274 | { |
| 275 | if (deleted_augroup == NULL) |
| 276 | deleted_augroup = (char_u *)_("--Deleted--"); |
| 277 | return deleted_augroup; |
| 278 | } |
| 279 | |
| 280 | /* |
| 281 | * Show the autocommands for one AutoPat. |
| 282 | */ |
| 283 | static void |
| 284 | show_autocmd(AutoPat *ap, event_T event) |
| 285 | { |
| 286 | AutoCmd *ac; |
| 287 | |
| 288 | // Check for "got_int" (here and at various places below), which is set |
| 289 | // when "q" has been hit for the "--more--" prompt |
| 290 | if (got_int) |
| 291 | return; |
| 292 | if (ap->pat == NULL) // pattern has been removed |
| 293 | return; |
| 294 | |
| 295 | msg_putchar('\n'); |
| 296 | if (got_int) |
| 297 | return; |
| 298 | if (event != last_event || ap->group != last_group) |
| 299 | { |
| 300 | if (ap->group != AUGROUP_DEFAULT) |
| 301 | { |
| 302 | if (AUGROUP_NAME(ap->group) == NULL) |
| 303 | msg_puts_attr((char *)get_deleted_augroup(), HL_ATTR(HLF_E)); |
| 304 | else |
| 305 | msg_puts_attr((char *)AUGROUP_NAME(ap->group), HL_ATTR(HLF_T)); |
| 306 | msg_puts(" "); |
| 307 | } |
| 308 | msg_puts_attr((char *)event_nr2name(event), HL_ATTR(HLF_T)); |
| 309 | last_event = event; |
| 310 | last_group = ap->group; |
| 311 | msg_putchar('\n'); |
| 312 | if (got_int) |
| 313 | return; |
| 314 | } |
| 315 | msg_col = 4; |
| 316 | msg_outtrans(ap->pat); |
| 317 | |
| 318 | for (ac = ap->cmds; ac != NULL; ac = ac->next) |
| 319 | { |
| 320 | if (ac->cmd != NULL) // skip removed commands |
| 321 | { |
| 322 | if (msg_col >= 14) |
| 323 | msg_putchar('\n'); |
| 324 | msg_col = 14; |
| 325 | if (got_int) |
| 326 | return; |
| 327 | msg_outtrans(ac->cmd); |
| 328 | #ifdef FEAT_EVAL |
| 329 | if (p_verbose > 0) |
| 330 | last_set_msg(ac->script_ctx); |
| 331 | #endif |
| 332 | if (got_int) |
| 333 | return; |
| 334 | if (ac->next != NULL) |
| 335 | { |
| 336 | msg_putchar('\n'); |
| 337 | if (got_int) |
| 338 | return; |
| 339 | } |
| 340 | } |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | /* |
| 345 | * Mark an autocommand pattern for deletion. |
| 346 | */ |
| 347 | static void |
| 348 | au_remove_pat(AutoPat *ap) |
| 349 | { |
| 350 | VIM_CLEAR(ap->pat); |
| 351 | ap->buflocal_nr = -1; |
| 352 | au_need_clean = TRUE; |
| 353 | } |
| 354 | |
| 355 | /* |
| 356 | * Mark all commands for a pattern for deletion. |
| 357 | */ |
| 358 | static void |
| 359 | au_remove_cmds(AutoPat *ap) |
| 360 | { |
| 361 | AutoCmd *ac; |
| 362 | |
| 363 | for (ac = ap->cmds; ac != NULL; ac = ac->next) |
| 364 | VIM_CLEAR(ac->cmd); |
| 365 | au_need_clean = TRUE; |
| 366 | } |
| 367 | |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 368 | // Delete one command from an autocmd pattern. |
| 369 | static void au_del_cmd(AutoCmd *ac) |
| 370 | { |
| 371 | VIM_CLEAR(ac->cmd); |
| 372 | au_need_clean = TRUE; |
| 373 | } |
| 374 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 375 | /* |
| 376 | * Cleanup autocommands and patterns that have been deleted. |
| 377 | * This is only done when not executing autocommands. |
| 378 | */ |
| 379 | static void |
| 380 | au_cleanup(void) |
| 381 | { |
| 382 | AutoPat *ap, **prev_ap; |
| 383 | AutoCmd *ac, **prev_ac; |
| 384 | event_T event; |
| 385 | |
| 386 | if (autocmd_busy || !au_need_clean) |
| 387 | return; |
| 388 | |
| 389 | // loop over all events |
=?UTF-8?q?Dundar=20G=C3=B6c?= | dfa5e46 | 2021-10-02 11:26:51 +0100 | [diff] [blame] | 390 | for (event = (event_T)0; (int)event < NUM_EVENTS; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 391 | event = (event_T)((int)event + 1)) |
| 392 | { |
| 393 | // loop over all autocommand patterns |
| 394 | prev_ap = &(first_autopat[(int)event]); |
| 395 | for (ap = *prev_ap; ap != NULL; ap = *prev_ap) |
| 396 | { |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 397 | int has_cmd = FALSE; |
| 398 | |
Bram Moolenaar | 8f4aeb5 | 2019-04-04 15:40:56 +0200 | [diff] [blame] | 399 | // loop over all commands for this pattern |
| 400 | prev_ac = &(ap->cmds); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 401 | for (ac = *prev_ac; ac != NULL; ac = *prev_ac) |
| 402 | { |
| 403 | // remove the command if the pattern is to be deleted or when |
| 404 | // the command has been marked for deletion |
| 405 | if (ap->pat == NULL || ac->cmd == NULL) |
| 406 | { |
| 407 | *prev_ac = ac->next; |
| 408 | vim_free(ac->cmd); |
| 409 | vim_free(ac); |
| 410 | } |
Bram Moolenaar | 8f4aeb5 | 2019-04-04 15:40:56 +0200 | [diff] [blame] | 411 | else |
| 412 | { |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 413 | has_cmd = TRUE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 414 | prev_ac = &(ac->next); |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 415 | } |
| 416 | } |
| 417 | |
Bram Moolenaar | 8f4aeb5 | 2019-04-04 15:40:56 +0200 | [diff] [blame] | 418 | if (ap->pat != NULL && !has_cmd) |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 419 | // Pattern was not marked for deletion, but all of its |
| 420 | // commands were. So mark the pattern for deletion. |
| 421 | au_remove_pat(ap); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 422 | |
| 423 | // remove the pattern if it has been marked for deletion |
| 424 | if (ap->pat == NULL) |
| 425 | { |
| 426 | if (ap->next == NULL) |
| 427 | { |
| 428 | if (prev_ap == &(first_autopat[(int)event])) |
| 429 | last_autopat[(int)event] = NULL; |
| 430 | else |
| 431 | // this depends on the "next" field being the first in |
| 432 | // the struct |
| 433 | last_autopat[(int)event] = (AutoPat *)prev_ap; |
| 434 | } |
| 435 | *prev_ap = ap->next; |
| 436 | vim_regfree(ap->reg_prog); |
| 437 | vim_free(ap); |
| 438 | } |
| 439 | else |
| 440 | prev_ap = &(ap->next); |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | au_need_clean = FALSE; |
| 445 | } |
| 446 | |
| 447 | /* |
| 448 | * Called when buffer is freed, to remove/invalidate related buffer-local |
| 449 | * autocmds. |
| 450 | */ |
| 451 | void |
| 452 | aubuflocal_remove(buf_T *buf) |
| 453 | { |
| 454 | AutoPat *ap; |
| 455 | event_T event; |
| 456 | AutoPatCmd *apc; |
| 457 | |
| 458 | // invalidate currently executing autocommands |
| 459 | for (apc = active_apc_list; apc; apc = apc->next) |
| 460 | if (buf->b_fnum == apc->arg_bufnr) |
| 461 | apc->arg_bufnr = 0; |
| 462 | |
| 463 | // invalidate buflocals looping through events |
=?UTF-8?q?Dundar=20G=C3=B6c?= | dfa5e46 | 2021-10-02 11:26:51 +0100 | [diff] [blame] | 464 | for (event = (event_T)0; (int)event < NUM_EVENTS; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 465 | event = (event_T)((int)event + 1)) |
| 466 | // loop over all autocommand patterns |
Bram Moolenaar | aeea721 | 2020-04-02 18:50:46 +0200 | [diff] [blame] | 467 | FOR_ALL_AUTOCMD_PATTERNS(event, ap) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 468 | if (ap->buflocal_nr == buf->b_fnum) |
| 469 | { |
| 470 | au_remove_pat(ap); |
| 471 | if (p_verbose >= 6) |
| 472 | { |
| 473 | verbose_enter(); |
| 474 | smsg(_("auto-removing autocommand: %s <buffer=%d>"), |
| 475 | event_nr2name(event), buf->b_fnum); |
| 476 | verbose_leave(); |
| 477 | } |
| 478 | } |
| 479 | au_cleanup(); |
| 480 | } |
| 481 | |
| 482 | /* |
| 483 | * Add an autocmd group name. |
| 484 | * Return its ID. Returns AUGROUP_ERROR (< 0) for error. |
| 485 | */ |
| 486 | static int |
| 487 | au_new_group(char_u *name) |
| 488 | { |
| 489 | int i; |
| 490 | |
| 491 | i = au_find_group(name); |
| 492 | if (i == AUGROUP_ERROR) // the group doesn't exist yet, add it |
| 493 | { |
| 494 | // First try using a free entry. |
| 495 | for (i = 0; i < augroups.ga_len; ++i) |
| 496 | if (AUGROUP_NAME(i) == NULL) |
| 497 | break; |
| 498 | if (i == augroups.ga_len && ga_grow(&augroups, 1) == FAIL) |
| 499 | return AUGROUP_ERROR; |
| 500 | |
| 501 | AUGROUP_NAME(i) = vim_strsave(name); |
| 502 | if (AUGROUP_NAME(i) == NULL) |
| 503 | return AUGROUP_ERROR; |
| 504 | if (i == augroups.ga_len) |
| 505 | ++augroups.ga_len; |
| 506 | } |
| 507 | |
| 508 | return i; |
| 509 | } |
| 510 | |
| 511 | static void |
| 512 | au_del_group(char_u *name) |
| 513 | { |
| 514 | int i; |
| 515 | |
| 516 | i = au_find_group(name); |
| 517 | if (i == AUGROUP_ERROR) // the group doesn't exist |
Bram Moolenaar | f1474d8 | 2021-12-31 19:59:55 +0000 | [diff] [blame^] | 518 | semsg(_(e_no_such_group_str), name); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 519 | else if (i == current_augroup) |
Bram Moolenaar | f1474d8 | 2021-12-31 19:59:55 +0000 | [diff] [blame^] | 520 | emsg(_(e_cannot_delete_current_group)); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 521 | else |
| 522 | { |
| 523 | event_T event; |
| 524 | AutoPat *ap; |
| 525 | int in_use = FALSE; |
| 526 | |
=?UTF-8?q?Dundar=20G=C3=B6c?= | dfa5e46 | 2021-10-02 11:26:51 +0100 | [diff] [blame] | 527 | for (event = (event_T)0; (int)event < NUM_EVENTS; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 528 | event = (event_T)((int)event + 1)) |
| 529 | { |
Bram Moolenaar | aeea721 | 2020-04-02 18:50:46 +0200 | [diff] [blame] | 530 | FOR_ALL_AUTOCMD_PATTERNS(event, ap) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 531 | if (ap->group == i && ap->pat != NULL) |
| 532 | { |
| 533 | give_warning((char_u *)_("W19: Deleting augroup that is still in use"), TRUE); |
| 534 | in_use = TRUE; |
| 535 | event = NUM_EVENTS; |
| 536 | break; |
| 537 | } |
| 538 | } |
| 539 | vim_free(AUGROUP_NAME(i)); |
| 540 | if (in_use) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 541 | AUGROUP_NAME(i) = get_deleted_augroup(); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 542 | else |
| 543 | AUGROUP_NAME(i) = NULL; |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | /* |
| 548 | * Find the ID of an autocmd group name. |
| 549 | * Return its ID. Returns AUGROUP_ERROR (< 0) for error. |
| 550 | */ |
| 551 | static int |
| 552 | au_find_group(char_u *name) |
| 553 | { |
| 554 | int i; |
| 555 | |
| 556 | for (i = 0; i < augroups.ga_len; ++i) |
| 557 | if (AUGROUP_NAME(i) != NULL && AUGROUP_NAME(i) != get_deleted_augroup() |
| 558 | && STRCMP(AUGROUP_NAME(i), name) == 0) |
| 559 | return i; |
| 560 | return AUGROUP_ERROR; |
| 561 | } |
| 562 | |
| 563 | /* |
| 564 | * Return TRUE if augroup "name" exists. |
| 565 | */ |
| 566 | int |
| 567 | au_has_group(char_u *name) |
| 568 | { |
| 569 | return au_find_group(name) != AUGROUP_ERROR; |
| 570 | } |
| 571 | |
| 572 | /* |
| 573 | * ":augroup {name}". |
| 574 | */ |
| 575 | void |
| 576 | do_augroup(char_u *arg, int del_group) |
| 577 | { |
| 578 | int i; |
| 579 | |
| 580 | if (del_group) |
| 581 | { |
| 582 | if (*arg == NUL) |
| 583 | emsg(_(e_argreq)); |
| 584 | else |
| 585 | au_del_group(arg); |
| 586 | } |
| 587 | else if (STRICMP(arg, "end") == 0) // ":aug end": back to group 0 |
| 588 | current_augroup = AUGROUP_DEFAULT; |
| 589 | else if (*arg) // ":aug xxx": switch to group xxx |
| 590 | { |
| 591 | i = au_new_group(arg); |
| 592 | if (i != AUGROUP_ERROR) |
| 593 | current_augroup = i; |
| 594 | } |
| 595 | else // ":aug": list the group names |
| 596 | { |
| 597 | msg_start(); |
| 598 | for (i = 0; i < augroups.ga_len; ++i) |
| 599 | { |
| 600 | if (AUGROUP_NAME(i) != NULL) |
| 601 | { |
| 602 | msg_puts((char *)AUGROUP_NAME(i)); |
| 603 | msg_puts(" "); |
| 604 | } |
| 605 | } |
| 606 | msg_clr_eos(); |
| 607 | msg_end(); |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | #if defined(EXITFREE) || defined(PROTO) |
| 612 | void |
| 613 | free_all_autocmds(void) |
| 614 | { |
| 615 | int i; |
| 616 | char_u *s; |
| 617 | |
| 618 | for (current_augroup = -1; current_augroup < augroups.ga_len; |
| 619 | ++current_augroup) |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 620 | do_autocmd(NULL, (char_u *)"", TRUE); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 621 | |
| 622 | for (i = 0; i < augroups.ga_len; ++i) |
| 623 | { |
| 624 | s = ((char_u **)(augroups.ga_data))[i]; |
| 625 | if (s != get_deleted_augroup()) |
| 626 | vim_free(s); |
| 627 | } |
| 628 | ga_clear(&augroups); |
| 629 | } |
| 630 | #endif |
| 631 | |
| 632 | /* |
| 633 | * Return the event number for event name "start". |
| 634 | * Return NUM_EVENTS if the event name was not found. |
| 635 | * Return a pointer to the next event name in "end". |
| 636 | */ |
| 637 | static event_T |
| 638 | event_name2nr(char_u *start, char_u **end) |
| 639 | { |
| 640 | char_u *p; |
| 641 | int i; |
| 642 | int len; |
| 643 | |
| 644 | // the event name ends with end of line, '|', a blank or a comma |
| 645 | for (p = start; *p && !VIM_ISWHITE(*p) && *p != ',' && *p != '|'; ++p) |
| 646 | ; |
| 647 | for (i = 0; event_names[i].name != NULL; ++i) |
| 648 | { |
| 649 | len = (int)STRLEN(event_names[i].name); |
| 650 | if (len == p - start && STRNICMP(event_names[i].name, start, len) == 0) |
| 651 | break; |
| 652 | } |
| 653 | if (*p == ',') |
| 654 | ++p; |
| 655 | *end = p; |
| 656 | if (event_names[i].name == NULL) |
| 657 | return NUM_EVENTS; |
| 658 | return event_names[i].event; |
| 659 | } |
| 660 | |
| 661 | /* |
| 662 | * Return the name for event "event". |
| 663 | */ |
| 664 | static char_u * |
| 665 | event_nr2name(event_T event) |
| 666 | { |
| 667 | int i; |
| 668 | |
| 669 | for (i = 0; event_names[i].name != NULL; ++i) |
| 670 | if (event_names[i].event == event) |
| 671 | return (char_u *)event_names[i].name; |
| 672 | return (char_u *)"Unknown"; |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * Scan over the events. "*" stands for all events. |
| 677 | */ |
| 678 | static char_u * |
| 679 | find_end_event( |
| 680 | char_u *arg, |
| 681 | int have_group) // TRUE when group name was found |
| 682 | { |
| 683 | char_u *pat; |
| 684 | char_u *p; |
| 685 | |
| 686 | if (*arg == '*') |
| 687 | { |
| 688 | if (arg[1] && !VIM_ISWHITE(arg[1])) |
| 689 | { |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 690 | semsg(_(e_illegal_character_after_star_str), arg); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 691 | return NULL; |
| 692 | } |
| 693 | pat = arg + 1; |
| 694 | } |
| 695 | else |
| 696 | { |
| 697 | for (pat = arg; *pat && *pat != '|' && !VIM_ISWHITE(*pat); pat = p) |
| 698 | { |
=?UTF-8?q?Dundar=20G=C3=B6c?= | dfa5e46 | 2021-10-02 11:26:51 +0100 | [diff] [blame] | 699 | if ((int)event_name2nr(pat, &p) >= NUM_EVENTS) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 700 | { |
| 701 | if (have_group) |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 702 | semsg(_(e_no_such_event_str), pat); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 703 | else |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 704 | semsg(_(e_no_such_group_or_event_str), pat); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 705 | return NULL; |
| 706 | } |
| 707 | } |
| 708 | } |
| 709 | return pat; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * Return TRUE if "event" is included in 'eventignore'. |
| 714 | */ |
| 715 | static int |
| 716 | event_ignored(event_T event) |
| 717 | { |
| 718 | char_u *p = p_ei; |
| 719 | |
| 720 | while (*p != NUL) |
| 721 | { |
| 722 | if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ',')) |
| 723 | return TRUE; |
| 724 | if (event_name2nr(p, &p) == event) |
| 725 | return TRUE; |
| 726 | } |
| 727 | |
| 728 | return FALSE; |
| 729 | } |
| 730 | |
| 731 | /* |
| 732 | * Return OK when the contents of p_ei is valid, FAIL otherwise. |
| 733 | */ |
| 734 | int |
| 735 | check_ei(void) |
| 736 | { |
| 737 | char_u *p = p_ei; |
| 738 | |
| 739 | while (*p) |
| 740 | { |
| 741 | if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ',')) |
| 742 | { |
| 743 | p += 3; |
| 744 | if (*p == ',') |
| 745 | ++p; |
| 746 | } |
| 747 | else if (event_name2nr(p, &p) == NUM_EVENTS) |
| 748 | return FAIL; |
| 749 | } |
| 750 | |
| 751 | return OK; |
| 752 | } |
| 753 | |
| 754 | # if defined(FEAT_SYN_HL) || defined(PROTO) |
| 755 | |
| 756 | /* |
| 757 | * Add "what" to 'eventignore' to skip loading syntax highlighting for every |
| 758 | * buffer loaded into the window. "what" must start with a comma. |
| 759 | * Returns the old value of 'eventignore' in allocated memory. |
| 760 | */ |
| 761 | char_u * |
| 762 | au_event_disable(char *what) |
| 763 | { |
| 764 | char_u *new_ei; |
| 765 | char_u *save_ei; |
| 766 | |
| 767 | save_ei = vim_strsave(p_ei); |
| 768 | if (save_ei != NULL) |
| 769 | { |
Bram Moolenaar | df44a27 | 2020-06-07 20:49:05 +0200 | [diff] [blame] | 770 | new_ei = vim_strnsave(p_ei, STRLEN(p_ei) + STRLEN(what)); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 771 | if (new_ei != NULL) |
| 772 | { |
| 773 | if (*what == ',' && *p_ei == NUL) |
| 774 | STRCPY(new_ei, what + 1); |
| 775 | else |
| 776 | STRCAT(new_ei, what); |
| 777 | set_string_option_direct((char_u *)"ei", -1, new_ei, |
| 778 | OPT_FREE, SID_NONE); |
| 779 | vim_free(new_ei); |
| 780 | } |
| 781 | } |
| 782 | return save_ei; |
| 783 | } |
| 784 | |
| 785 | void |
| 786 | au_event_restore(char_u *old_ei) |
| 787 | { |
| 788 | if (old_ei != NULL) |
| 789 | { |
| 790 | set_string_option_direct((char_u *)"ei", -1, old_ei, |
| 791 | OPT_FREE, SID_NONE); |
| 792 | vim_free(old_ei); |
| 793 | } |
| 794 | } |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 795 | # endif // FEAT_SYN_HL |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 796 | |
| 797 | /* |
| 798 | * do_autocmd() -- implements the :autocmd command. Can be used in the |
| 799 | * following ways: |
| 800 | * |
| 801 | * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that |
| 802 | * will be automatically executed for <event> |
| 803 | * when editing a file matching <pat>, in |
| 804 | * the current group. |
| 805 | * :autocmd <event> <pat> Show the autocommands associated with |
| 806 | * <event> and <pat>. |
| 807 | * :autocmd <event> Show the autocommands associated with |
| 808 | * <event>. |
| 809 | * :autocmd Show all autocommands. |
| 810 | * :autocmd! <event> <pat> <cmd> Remove all autocommands associated with |
| 811 | * <event> and <pat>, and add the command |
| 812 | * <cmd>, for the current group. |
| 813 | * :autocmd! <event> <pat> Remove all autocommands associated with |
| 814 | * <event> and <pat> for the current group. |
| 815 | * :autocmd! <event> Remove all autocommands associated with |
| 816 | * <event> for the current group. |
| 817 | * :autocmd! Remove ALL autocommands for the current |
| 818 | * group. |
| 819 | * |
| 820 | * Multiple events and patterns may be given separated by commas. Here are |
| 821 | * some examples: |
| 822 | * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic |
| 823 | * :autocmd bufleave * set tw=79 nosmartindent ic infercase |
| 824 | * |
| 825 | * :autocmd * *.c show all autocommands for *.c files. |
| 826 | * |
| 827 | * Mostly a {group} argument can optionally appear before <event>. |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 828 | * "eap" can be NULL. |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 829 | */ |
| 830 | void |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 831 | do_autocmd(exarg_T *eap, char_u *arg_in, int forceit) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 832 | { |
| 833 | char_u *arg = arg_in; |
| 834 | char_u *pat; |
| 835 | char_u *envpat = NULL; |
| 836 | char_u *cmd; |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 837 | int cmd_need_free = FALSE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 838 | event_T event; |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 839 | char_u *tofree = NULL; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 840 | int nested = FALSE; |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 841 | int once = FALSE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 842 | int group; |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 843 | int i; |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 844 | int flags = 0; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 845 | |
| 846 | if (*arg == '|') |
| 847 | { |
Bram Moolenaar | b8e642f | 2021-11-20 10:38:25 +0000 | [diff] [blame] | 848 | eap->nextcmd = arg + 1; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 849 | arg = (char_u *)""; |
| 850 | group = AUGROUP_ALL; // no argument, use all groups |
| 851 | } |
| 852 | else |
| 853 | { |
| 854 | /* |
| 855 | * Check for a legal group name. If not, use AUGROUP_ALL. |
| 856 | */ |
| 857 | group = au_get_grouparg(&arg); |
| 858 | if (arg == NULL) // out of memory |
| 859 | return; |
| 860 | } |
| 861 | |
| 862 | /* |
| 863 | * Scan over the events. |
| 864 | * If we find an illegal name, return here, don't do anything. |
| 865 | */ |
| 866 | pat = find_end_event(arg, group != AUGROUP_ALL); |
| 867 | if (pat == NULL) |
| 868 | return; |
| 869 | |
| 870 | pat = skipwhite(pat); |
| 871 | if (*pat == '|') |
| 872 | { |
Bram Moolenaar | b8e642f | 2021-11-20 10:38:25 +0000 | [diff] [blame] | 873 | eap->nextcmd = pat + 1; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 874 | pat = (char_u *)""; |
| 875 | cmd = (char_u *)""; |
| 876 | } |
| 877 | else |
| 878 | { |
| 879 | /* |
| 880 | * Scan over the pattern. Put a NUL at the end. |
| 881 | */ |
| 882 | cmd = pat; |
| 883 | while (*cmd && (!VIM_ISWHITE(*cmd) || cmd[-1] == '\\')) |
| 884 | cmd++; |
| 885 | if (*cmd) |
| 886 | *cmd++ = NUL; |
| 887 | |
| 888 | // Expand environment variables in the pattern. Set 'shellslash', we |
| 889 | // want forward slashes here. |
| 890 | if (vim_strchr(pat, '$') != NULL || vim_strchr(pat, '~') != NULL) |
| 891 | { |
| 892 | #ifdef BACKSLASH_IN_FILENAME |
| 893 | int p_ssl_save = p_ssl; |
| 894 | |
| 895 | p_ssl = TRUE; |
| 896 | #endif |
| 897 | envpat = expand_env_save(pat); |
| 898 | #ifdef BACKSLASH_IN_FILENAME |
| 899 | p_ssl = p_ssl_save; |
| 900 | #endif |
| 901 | if (envpat != NULL) |
| 902 | pat = envpat; |
| 903 | } |
| 904 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 905 | cmd = skipwhite(cmd); |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 906 | for (i = 0; i < 2; i++) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 907 | { |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 908 | if (*cmd != NUL) |
| 909 | { |
| 910 | // Check for "++once" flag. |
| 911 | if (STRNCMP(cmd, "++once", 6) == 0 && VIM_ISWHITE(cmd[6])) |
| 912 | { |
| 913 | if (once) |
| 914 | semsg(_(e_duparg2), "++once"); |
| 915 | once = TRUE; |
| 916 | cmd = skipwhite(cmd + 6); |
| 917 | } |
| 918 | |
| 919 | // Check for "++nested" flag. |
| 920 | if ((STRNCMP(cmd, "++nested", 8) == 0 && VIM_ISWHITE(cmd[8]))) |
| 921 | { |
| 922 | if (nested) |
| 923 | semsg(_(e_duparg2), "++nested"); |
| 924 | nested = TRUE; |
| 925 | cmd = skipwhite(cmd + 8); |
| 926 | } |
| 927 | |
| 928 | // Check for the old "nested" flag. |
| 929 | if (STRNCMP(cmd, "nested", 6) == 0 && VIM_ISWHITE(cmd[6])) |
| 930 | { |
| 931 | if (nested) |
| 932 | semsg(_(e_duparg2), "nested"); |
| 933 | nested = TRUE; |
| 934 | cmd = skipwhite(cmd + 6); |
| 935 | } |
| 936 | } |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 937 | } |
| 938 | |
| 939 | /* |
| 940 | * Find the start of the commands. |
| 941 | * Expand <sfile> in it. |
| 942 | */ |
| 943 | if (*cmd != NUL) |
| 944 | { |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 945 | if (eap != NULL) |
| 946 | // Read a {} block if it follows. |
| 947 | cmd = may_get_cmd_block(eap, cmd, &tofree, &flags); |
| 948 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 949 | cmd = expand_sfile(cmd); |
| 950 | if (cmd == NULL) // some error |
| 951 | return; |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 952 | cmd_need_free = TRUE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 953 | } |
| 954 | } |
| 955 | |
| 956 | /* |
| 957 | * Print header when showing autocommands. |
| 958 | */ |
| 959 | if (!forceit && *cmd == NUL) |
| 960 | // Highlight title |
| 961 | msg_puts_title(_("\n--- Autocommands ---")); |
| 962 | |
| 963 | /* |
| 964 | * Loop over the events. |
| 965 | */ |
| 966 | last_event = (event_T)-1; // for listing the event name |
| 967 | last_group = AUGROUP_ERROR; // for listing the group name |
| 968 | if (*arg == '*' || *arg == NUL || *arg == '|') |
| 969 | { |
Bram Moolenaar | b6db146 | 2021-12-24 19:24:47 +0000 | [diff] [blame] | 970 | if (*cmd != NUL) |
Bram Moolenaar | 9a046fd | 2021-01-28 13:47:59 +0100 | [diff] [blame] | 971 | emsg(_(e_cannot_define_autocommands_for_all_events)); |
| 972 | else |
=?UTF-8?q?Dundar=20G=C3=B6c?= | dfa5e46 | 2021-10-02 11:26:51 +0100 | [diff] [blame] | 973 | for (event = (event_T)0; (int)event < NUM_EVENTS; |
Bram Moolenaar | 9a046fd | 2021-01-28 13:47:59 +0100 | [diff] [blame] | 974 | event = (event_T)((int)event + 1)) |
| 975 | if (do_autocmd_event(event, pat, |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 976 | once, nested, cmd, forceit, group, flags) == FAIL) |
Bram Moolenaar | 9a046fd | 2021-01-28 13:47:59 +0100 | [diff] [blame] | 977 | break; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 978 | } |
| 979 | else |
| 980 | { |
| 981 | while (*arg && *arg != '|' && !VIM_ISWHITE(*arg)) |
| 982 | if (do_autocmd_event(event_name2nr(arg, &arg), pat, |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 983 | once, nested, cmd, forceit, group, flags) == FAIL) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 984 | break; |
| 985 | } |
| 986 | |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 987 | if (cmd_need_free) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 988 | vim_free(cmd); |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 989 | vim_free(tofree); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 990 | vim_free(envpat); |
| 991 | } |
| 992 | |
| 993 | /* |
| 994 | * Find the group ID in a ":autocmd" or ":doautocmd" argument. |
| 995 | * The "argp" argument is advanced to the following argument. |
| 996 | * |
| 997 | * Returns the group ID, AUGROUP_ERROR for error (out of memory). |
| 998 | */ |
| 999 | static int |
| 1000 | au_get_grouparg(char_u **argp) |
| 1001 | { |
| 1002 | char_u *group_name; |
| 1003 | char_u *p; |
| 1004 | char_u *arg = *argp; |
| 1005 | int group = AUGROUP_ALL; |
| 1006 | |
| 1007 | for (p = arg; *p && !VIM_ISWHITE(*p) && *p != '|'; ++p) |
| 1008 | ; |
| 1009 | if (p > arg) |
| 1010 | { |
Bram Moolenaar | df44a27 | 2020-06-07 20:49:05 +0200 | [diff] [blame] | 1011 | group_name = vim_strnsave(arg, p - arg); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1012 | if (group_name == NULL) // out of memory |
| 1013 | return AUGROUP_ERROR; |
| 1014 | group = au_find_group(group_name); |
| 1015 | if (group == AUGROUP_ERROR) |
| 1016 | group = AUGROUP_ALL; // no match, use all groups |
| 1017 | else |
| 1018 | *argp = skipwhite(p); // match, skip over group name |
| 1019 | vim_free(group_name); |
| 1020 | } |
| 1021 | return group; |
| 1022 | } |
| 1023 | |
| 1024 | /* |
| 1025 | * do_autocmd() for one event. |
| 1026 | * If *pat == NUL do for all patterns. |
| 1027 | * If *cmd == NUL show entries. |
| 1028 | * If forceit == TRUE delete entries. |
| 1029 | * If group is not AUGROUP_ALL, only use this group. |
| 1030 | */ |
| 1031 | static int |
| 1032 | do_autocmd_event( |
| 1033 | event_T event, |
| 1034 | char_u *pat, |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 1035 | int once, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1036 | int nested, |
| 1037 | char_u *cmd, |
| 1038 | int forceit, |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 1039 | int group, |
| 1040 | int flags) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1041 | { |
| 1042 | AutoPat *ap; |
| 1043 | AutoPat **prev_ap; |
| 1044 | AutoCmd *ac; |
| 1045 | AutoCmd **prev_ac; |
| 1046 | int brace_level; |
| 1047 | char_u *endpat; |
| 1048 | int findgroup; |
| 1049 | int allgroups; |
| 1050 | int patlen; |
| 1051 | int is_buflocal; |
| 1052 | int buflocal_nr; |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 1053 | char_u buflocal_pat[25]; // for "<buffer=X>" |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1054 | |
| 1055 | if (group == AUGROUP_ALL) |
| 1056 | findgroup = current_augroup; |
| 1057 | else |
| 1058 | findgroup = group; |
| 1059 | allgroups = (group == AUGROUP_ALL && !forceit && *cmd == NUL); |
| 1060 | |
| 1061 | /* |
| 1062 | * Show or delete all patterns for an event. |
| 1063 | */ |
| 1064 | if (*pat == NUL) |
| 1065 | { |
Bram Moolenaar | aeea721 | 2020-04-02 18:50:46 +0200 | [diff] [blame] | 1066 | FOR_ALL_AUTOCMD_PATTERNS(event, ap) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1067 | { |
| 1068 | if (forceit) // delete the AutoPat, if it's in the current group |
| 1069 | { |
| 1070 | if (ap->group == findgroup) |
| 1071 | au_remove_pat(ap); |
| 1072 | } |
| 1073 | else if (group == AUGROUP_ALL || ap->group == group) |
| 1074 | show_autocmd(ap, event); |
| 1075 | } |
| 1076 | } |
| 1077 | |
| 1078 | /* |
| 1079 | * Loop through all the specified patterns. |
| 1080 | */ |
| 1081 | for ( ; *pat; pat = (*endpat == ',' ? endpat + 1 : endpat)) |
| 1082 | { |
| 1083 | /* |
| 1084 | * Find end of the pattern. |
| 1085 | * Watch out for a comma in braces, like "*.\{obj,o\}". |
| 1086 | */ |
| 1087 | brace_level = 0; |
| 1088 | for (endpat = pat; *endpat && (*endpat != ',' || brace_level |
| 1089 | || (endpat > pat && endpat[-1] == '\\')); ++endpat) |
| 1090 | { |
| 1091 | if (*endpat == '{') |
| 1092 | brace_level++; |
| 1093 | else if (*endpat == '}') |
| 1094 | brace_level--; |
| 1095 | } |
| 1096 | if (pat == endpat) // ignore single comma |
| 1097 | continue; |
| 1098 | patlen = (int)(endpat - pat); |
| 1099 | |
| 1100 | /* |
| 1101 | * detect special <buflocal[=X]> buffer-local patterns |
| 1102 | */ |
| 1103 | is_buflocal = FALSE; |
| 1104 | buflocal_nr = 0; |
| 1105 | |
| 1106 | if (patlen >= 8 && STRNCMP(pat, "<buffer", 7) == 0 |
| 1107 | && pat[patlen - 1] == '>') |
| 1108 | { |
| 1109 | // "<buffer...>": Error will be printed only for addition. |
| 1110 | // printing and removing will proceed silently. |
| 1111 | is_buflocal = TRUE; |
| 1112 | if (patlen == 8) |
| 1113 | // "<buffer>" |
| 1114 | buflocal_nr = curbuf->b_fnum; |
| 1115 | else if (patlen > 9 && pat[7] == '=') |
| 1116 | { |
| 1117 | if (patlen == 13 && STRNICMP(pat, "<buffer=abuf>", 13) == 0) |
| 1118 | // "<buffer=abuf>" |
| 1119 | buflocal_nr = autocmd_bufnr; |
| 1120 | else if (skipdigits(pat + 8) == pat + patlen - 1) |
| 1121 | // "<buffer=123>" |
| 1122 | buflocal_nr = atoi((char *)pat + 8); |
| 1123 | } |
| 1124 | } |
| 1125 | |
| 1126 | if (is_buflocal) |
| 1127 | { |
| 1128 | // normalize pat into standard "<buffer>#N" form |
| 1129 | sprintf((char *)buflocal_pat, "<buffer=%d>", buflocal_nr); |
| 1130 | pat = buflocal_pat; // can modify pat and patlen |
| 1131 | patlen = (int)STRLEN(buflocal_pat); // but not endpat |
| 1132 | } |
| 1133 | |
| 1134 | /* |
| 1135 | * Find AutoPat entries with this pattern. When adding a command it |
| 1136 | * always goes at or after the last one, so start at the end. |
| 1137 | */ |
| 1138 | if (!forceit && *cmd != NUL && last_autopat[(int)event] != NULL) |
| 1139 | prev_ap = &last_autopat[(int)event]; |
| 1140 | else |
| 1141 | prev_ap = &first_autopat[(int)event]; |
| 1142 | while ((ap = *prev_ap) != NULL) |
| 1143 | { |
| 1144 | if (ap->pat != NULL) |
| 1145 | { |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 1146 | /* |
| 1147 | * Accept a pattern when: |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1148 | * - a group was specified and it's that group, or a group was |
| 1149 | * not specified and it's the current group, or a group was |
| 1150 | * not specified and we are listing |
| 1151 | * - the length of the pattern matches |
| 1152 | * - the pattern matches. |
| 1153 | * For <buffer[=X]>, this condition works because we normalize |
| 1154 | * all buffer-local patterns. |
| 1155 | */ |
| 1156 | if ((allgroups || ap->group == findgroup) |
| 1157 | && ap->patlen == patlen |
| 1158 | && STRNCMP(pat, ap->pat, patlen) == 0) |
| 1159 | { |
| 1160 | /* |
| 1161 | * Remove existing autocommands. |
| 1162 | * If adding any new autocmd's for this AutoPat, don't |
| 1163 | * delete the pattern from the autopat list, append to |
| 1164 | * this list. |
| 1165 | */ |
| 1166 | if (forceit) |
| 1167 | { |
| 1168 | if (*cmd != NUL && ap->next == NULL) |
| 1169 | { |
| 1170 | au_remove_cmds(ap); |
| 1171 | break; |
| 1172 | } |
| 1173 | au_remove_pat(ap); |
| 1174 | } |
| 1175 | |
| 1176 | /* |
| 1177 | * Show autocmd's for this autopat, or buflocals <buffer=X> |
| 1178 | */ |
| 1179 | else if (*cmd == NUL) |
| 1180 | show_autocmd(ap, event); |
| 1181 | |
| 1182 | /* |
| 1183 | * Add autocmd to this autopat, if it's the last one. |
| 1184 | */ |
| 1185 | else if (ap->next == NULL) |
| 1186 | break; |
| 1187 | } |
| 1188 | } |
| 1189 | prev_ap = &ap->next; |
| 1190 | } |
| 1191 | |
| 1192 | /* |
| 1193 | * Add a new command. |
| 1194 | */ |
| 1195 | if (*cmd != NUL) |
| 1196 | { |
| 1197 | /* |
| 1198 | * If the pattern we want to add a command to does appear at the |
| 1199 | * end of the list (or not is not in the list at all), add the |
| 1200 | * pattern at the end of the list. |
| 1201 | */ |
| 1202 | if (ap == NULL) |
| 1203 | { |
Bram Moolenaar | c667da5 | 2019-11-30 20:52:27 +0100 | [diff] [blame] | 1204 | // refuse to add buffer-local ap if buffer number is invalid |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1205 | if (is_buflocal && (buflocal_nr == 0 |
| 1206 | || buflist_findnr(buflocal_nr) == NULL)) |
| 1207 | { |
Bram Moolenaar | f1474d8 | 2021-12-31 19:59:55 +0000 | [diff] [blame^] | 1208 | semsg(_(e_buffer_nr_invalid_buffer_number), buflocal_nr); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1209 | return FAIL; |
| 1210 | } |
| 1211 | |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 1212 | ap = ALLOC_ONE(AutoPat); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1213 | if (ap == NULL) |
| 1214 | return FAIL; |
| 1215 | ap->pat = vim_strnsave(pat, patlen); |
| 1216 | ap->patlen = patlen; |
| 1217 | if (ap->pat == NULL) |
| 1218 | { |
| 1219 | vim_free(ap); |
| 1220 | return FAIL; |
| 1221 | } |
| 1222 | |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | 25def2c | 2021-10-22 18:56:39 +0100 | [diff] [blame] | 1223 | #ifdef FEAT_EVAL |
| 1224 | // need to initialize last_mode for the first ModeChanged |
| 1225 | // autocmd |
| 1226 | if (event == EVENT_MODECHANGED && !has_modechanged()) |
| 1227 | { |
| 1228 | typval_T rettv; |
| 1229 | typval_T tv[2]; |
| 1230 | |
| 1231 | tv[0].v_type = VAR_NUMBER; |
| 1232 | tv[0].vval.v_number = 1; |
| 1233 | tv[1].v_type = VAR_UNKNOWN; |
| 1234 | f_mode(tv, &rettv); |
| 1235 | STRCPY(last_mode, rettv.vval.v_string); |
| 1236 | vim_free(rettv.vval.v_string); |
| 1237 | } |
| 1238 | #endif |
| 1239 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1240 | if (is_buflocal) |
| 1241 | { |
| 1242 | ap->buflocal_nr = buflocal_nr; |
| 1243 | ap->reg_prog = NULL; |
| 1244 | } |
| 1245 | else |
| 1246 | { |
| 1247 | char_u *reg_pat; |
| 1248 | |
| 1249 | ap->buflocal_nr = 0; |
| 1250 | reg_pat = file_pat_to_reg_pat(pat, endpat, |
| 1251 | &ap->allow_dirs, TRUE); |
| 1252 | if (reg_pat != NULL) |
| 1253 | ap->reg_prog = vim_regcomp(reg_pat, RE_MAGIC); |
| 1254 | vim_free(reg_pat); |
| 1255 | if (reg_pat == NULL || ap->reg_prog == NULL) |
| 1256 | { |
| 1257 | vim_free(ap->pat); |
| 1258 | vim_free(ap); |
| 1259 | return FAIL; |
| 1260 | } |
| 1261 | } |
| 1262 | ap->cmds = NULL; |
| 1263 | *prev_ap = ap; |
| 1264 | last_autopat[(int)event] = ap; |
| 1265 | ap->next = NULL; |
| 1266 | if (group == AUGROUP_ALL) |
| 1267 | ap->group = current_augroup; |
| 1268 | else |
| 1269 | ap->group = group; |
| 1270 | } |
| 1271 | |
| 1272 | /* |
| 1273 | * Add the autocmd at the end of the AutoCmd list. |
| 1274 | */ |
| 1275 | prev_ac = &(ap->cmds); |
| 1276 | while ((ac = *prev_ac) != NULL) |
| 1277 | prev_ac = &ac->next; |
Bram Moolenaar | c799fe2 | 2019-05-28 23:08:19 +0200 | [diff] [blame] | 1278 | ac = ALLOC_ONE(AutoCmd); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1279 | if (ac == NULL) |
| 1280 | return FAIL; |
| 1281 | ac->cmd = vim_strsave(cmd); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1282 | ac->script_ctx = current_sctx; |
Bram Moolenaar | 73b8b0a | 2021-08-01 14:52:32 +0200 | [diff] [blame] | 1283 | if (flags & UC_VIM9) |
| 1284 | ac->script_ctx.sc_version = SCRIPT_VERSION_VIM9; |
Bram Moolenaar | 9b8d622 | 2020-12-28 18:26:00 +0100 | [diff] [blame] | 1285 | #ifdef FEAT_EVAL |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 1286 | ac->script_ctx.sc_lnum += SOURCING_LNUM; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1287 | #endif |
| 1288 | if (ac->cmd == NULL) |
| 1289 | { |
| 1290 | vim_free(ac); |
| 1291 | return FAIL; |
| 1292 | } |
| 1293 | ac->next = NULL; |
| 1294 | *prev_ac = ac; |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 1295 | ac->once = once; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1296 | ac->nested = nested; |
| 1297 | } |
| 1298 | } |
| 1299 | |
| 1300 | au_cleanup(); // may really delete removed patterns/commands now |
| 1301 | return OK; |
| 1302 | } |
| 1303 | |
| 1304 | /* |
| 1305 | * Implementation of ":doautocmd [group] event [fname]". |
| 1306 | * Return OK for success, FAIL for failure; |
| 1307 | */ |
| 1308 | int |
| 1309 | do_doautocmd( |
Bram Moolenaar | 1b154ea | 2021-08-07 13:59:43 +0200 | [diff] [blame] | 1310 | char_u *arg_start, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1311 | int do_msg, // give message for no matching autocmds? |
| 1312 | int *did_something) |
| 1313 | { |
Bram Moolenaar | 1b154ea | 2021-08-07 13:59:43 +0200 | [diff] [blame] | 1314 | char_u *arg = arg_start; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1315 | char_u *fname; |
| 1316 | int nothing_done = TRUE; |
| 1317 | int group; |
| 1318 | |
| 1319 | if (did_something != NULL) |
| 1320 | *did_something = FALSE; |
| 1321 | |
| 1322 | /* |
| 1323 | * Check for a legal group name. If not, use AUGROUP_ALL. |
| 1324 | */ |
| 1325 | group = au_get_grouparg(&arg); |
| 1326 | if (arg == NULL) // out of memory |
| 1327 | return FAIL; |
| 1328 | |
| 1329 | if (*arg == '*') |
| 1330 | { |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 1331 | emsg(_(e_cant_execute_autocommands_for_all_events)); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1332 | return FAIL; |
| 1333 | } |
| 1334 | |
| 1335 | /* |
| 1336 | * Scan over the events. |
| 1337 | * If we find an illegal name, return here, don't do anything. |
| 1338 | */ |
| 1339 | fname = find_end_event(arg, group != AUGROUP_ALL); |
| 1340 | if (fname == NULL) |
| 1341 | return FAIL; |
| 1342 | |
| 1343 | fname = skipwhite(fname); |
| 1344 | |
| 1345 | /* |
| 1346 | * Loop over the events. |
| 1347 | */ |
| 1348 | while (*arg && !ends_excmd(*arg) && !VIM_ISWHITE(*arg)) |
| 1349 | if (apply_autocmds_group(event_name2nr(arg, &arg), |
| 1350 | fname, NULL, TRUE, group, curbuf, NULL)) |
| 1351 | nothing_done = FALSE; |
| 1352 | |
Bram Moolenaar | 1b154ea | 2021-08-07 13:59:43 +0200 | [diff] [blame] | 1353 | if (nothing_done && do_msg |
| 1354 | #ifdef FEAT_EVAL |
| 1355 | && !aborting() |
| 1356 | #endif |
| 1357 | ) |
| 1358 | smsg(_("No matching autocommands: %s"), arg_start); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1359 | if (did_something != NULL) |
| 1360 | *did_something = !nothing_done; |
| 1361 | |
| 1362 | #ifdef FEAT_EVAL |
| 1363 | return aborting() ? FAIL : OK; |
| 1364 | #else |
| 1365 | return OK; |
| 1366 | #endif |
| 1367 | } |
| 1368 | |
| 1369 | /* |
| 1370 | * ":doautoall": execute autocommands for each loaded buffer. |
| 1371 | */ |
| 1372 | void |
| 1373 | ex_doautoall(exarg_T *eap) |
| 1374 | { |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 1375 | int retval = OK; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1376 | aco_save_T aco; |
| 1377 | buf_T *buf; |
| 1378 | bufref_T bufref; |
| 1379 | char_u *arg = eap->arg; |
| 1380 | int call_do_modelines = check_nomodeline(&arg); |
| 1381 | int did_aucmd; |
| 1382 | |
| 1383 | /* |
| 1384 | * This is a bit tricky: For some commands curwin->w_buffer needs to be |
| 1385 | * equal to curbuf, but for some buffers there may not be a window. |
| 1386 | * So we change the buffer for the current window for a moment. This |
| 1387 | * gives problems when the autocommands make changes to the list of |
| 1388 | * buffers or windows... |
| 1389 | */ |
| 1390 | FOR_ALL_BUFFERS(buf) |
| 1391 | { |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 1392 | // Only do loaded buffers and skip the current buffer, it's done last. |
| 1393 | if (buf->b_ml.ml_mfp != NULL && buf != curbuf) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1394 | { |
| 1395 | // find a window for this buffer and save some values |
| 1396 | aucmd_prepbuf(&aco, buf); |
| 1397 | set_bufref(&bufref, buf); |
| 1398 | |
| 1399 | // execute the autocommands for this buffer |
| 1400 | retval = do_doautocmd(arg, FALSE, &did_aucmd); |
| 1401 | |
| 1402 | if (call_do_modelines && did_aucmd) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1403 | // Execute the modeline settings, but don't set window-local |
| 1404 | // options if we are using the current window for another |
| 1405 | // buffer. |
| 1406 | do_modelines(curwin == aucmd_win ? OPT_NOWIN : 0); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1407 | |
| 1408 | // restore the current window |
| 1409 | aucmd_restbuf(&aco); |
| 1410 | |
| 1411 | // stop if there is some error or buffer was deleted |
| 1412 | if (retval == FAIL || !bufref_valid(&bufref)) |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 1413 | { |
| 1414 | retval = FAIL; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1415 | break; |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 1416 | } |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1417 | } |
| 1418 | } |
| 1419 | |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 1420 | // Execute autocommands for the current buffer last. |
| 1421 | if (retval == OK) |
| 1422 | { |
| 1423 | do_doautocmd(arg, FALSE, &did_aucmd); |
| 1424 | if (call_do_modelines && did_aucmd) |
| 1425 | do_modelines(0); |
| 1426 | } |
| 1427 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1428 | check_cursor(); // just in case lines got deleted |
| 1429 | } |
| 1430 | |
| 1431 | /* |
| 1432 | * Check *argp for <nomodeline>. When it is present return FALSE, otherwise |
| 1433 | * return TRUE and advance *argp to after it. |
| 1434 | * Thus return TRUE when do_modelines() should be called. |
| 1435 | */ |
| 1436 | int |
| 1437 | check_nomodeline(char_u **argp) |
| 1438 | { |
| 1439 | if (STRNCMP(*argp, "<nomodeline>", 12) == 0) |
| 1440 | { |
| 1441 | *argp = skipwhite(*argp + 12); |
| 1442 | return FALSE; |
| 1443 | } |
| 1444 | return TRUE; |
| 1445 | } |
| 1446 | |
| 1447 | /* |
| 1448 | * Prepare for executing autocommands for (hidden) buffer "buf". |
| 1449 | * Search for a visible window containing the current buffer. If there isn't |
| 1450 | * one then use "aucmd_win". |
| 1451 | * Set "curbuf" and "curwin" to match "buf". |
| 1452 | */ |
| 1453 | void |
| 1454 | aucmd_prepbuf( |
| 1455 | aco_save_T *aco, // structure to save values in |
| 1456 | buf_T *buf) // new curbuf |
| 1457 | { |
| 1458 | win_T *win; |
| 1459 | int save_ea; |
| 1460 | #ifdef FEAT_AUTOCHDIR |
| 1461 | int save_acd; |
| 1462 | #endif |
| 1463 | |
| 1464 | // Find a window that is for the new buffer |
| 1465 | if (buf == curbuf) // be quick when buf is curbuf |
| 1466 | win = curwin; |
| 1467 | else |
| 1468 | FOR_ALL_WINDOWS(win) |
| 1469 | if (win->w_buffer == buf) |
| 1470 | break; |
| 1471 | |
| 1472 | // Allocate "aucmd_win" when needed. If this fails (out of memory) fall |
| 1473 | // back to using the current window. |
| 1474 | if (win == NULL && aucmd_win == NULL) |
| 1475 | { |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 1476 | aucmd_win = win_alloc_popup_win(); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1477 | if (aucmd_win == NULL) |
| 1478 | win = curwin; |
| 1479 | } |
| 1480 | if (win == NULL && aucmd_win_used) |
| 1481 | // Strange recursive autocommand, fall back to using the current |
| 1482 | // window. Expect a few side effects... |
| 1483 | win = curwin; |
| 1484 | |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1485 | aco->save_curwin_id = curwin->w_id; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1486 | aco->save_curbuf = curbuf; |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1487 | aco->save_prevwin_id = prevwin == NULL ? 0 : prevwin->w_id; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1488 | if (win != NULL) |
| 1489 | { |
| 1490 | // There is a window for "buf" in the current tab page, make it the |
| 1491 | // curwin. This is preferred, it has the least side effects (esp. if |
| 1492 | // "buf" is curbuf). |
| 1493 | aco->use_aucmd_win = FALSE; |
| 1494 | curwin = win; |
| 1495 | } |
| 1496 | else |
| 1497 | { |
| 1498 | // There is no window for "buf", use "aucmd_win". To minimize the side |
| 1499 | // effects, insert it in the current tab page. |
| 1500 | // Anything related to a window (e.g., setting folds) may have |
| 1501 | // unexpected results. |
| 1502 | aco->use_aucmd_win = TRUE; |
| 1503 | aucmd_win_used = TRUE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1504 | |
Bram Moolenaar | 4d784b2 | 2019-05-25 19:51:39 +0200 | [diff] [blame] | 1505 | win_init_popup_win(aucmd_win, buf); |
| 1506 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1507 | aco->globaldir = globaldir; |
| 1508 | globaldir = NULL; |
| 1509 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1510 | // Split the current window, put the aucmd_win in the upper half. |
| 1511 | // We don't want the BufEnter or WinEnter autocommands. |
| 1512 | block_autocmds(); |
| 1513 | make_snapshot(SNAP_AUCMD_IDX); |
| 1514 | save_ea = p_ea; |
| 1515 | p_ea = FALSE; |
| 1516 | |
| 1517 | #ifdef FEAT_AUTOCHDIR |
| 1518 | // Prevent chdir() call in win_enter_ext(), through do_autochdir(). |
| 1519 | save_acd = p_acd; |
| 1520 | p_acd = FALSE; |
| 1521 | #endif |
| 1522 | |
| 1523 | (void)win_split_ins(0, WSP_TOP, aucmd_win, 0); |
| 1524 | (void)win_comp_pos(); // recompute window positions |
| 1525 | p_ea = save_ea; |
| 1526 | #ifdef FEAT_AUTOCHDIR |
| 1527 | p_acd = save_acd; |
| 1528 | #endif |
| 1529 | unblock_autocmds(); |
| 1530 | curwin = aucmd_win; |
| 1531 | } |
| 1532 | curbuf = buf; |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1533 | aco->new_curwin_id = curwin->w_id; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1534 | set_bufref(&aco->new_curbuf, curbuf); |
| 1535 | } |
| 1536 | |
| 1537 | /* |
| 1538 | * Cleanup after executing autocommands for a (hidden) buffer. |
| 1539 | * Restore the window as it was (if possible). |
| 1540 | */ |
| 1541 | void |
| 1542 | aucmd_restbuf( |
| 1543 | aco_save_T *aco) // structure holding saved values |
| 1544 | { |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1545 | int dummy; |
| 1546 | win_T *save_curwin; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1547 | |
| 1548 | if (aco->use_aucmd_win) |
| 1549 | { |
| 1550 | --curbuf->b_nwindows; |
| 1551 | // Find "aucmd_win", it can't be closed, but it may be in another tab |
| 1552 | // page. Do not trigger autocommands here. |
| 1553 | block_autocmds(); |
| 1554 | if (curwin != aucmd_win) |
| 1555 | { |
| 1556 | tabpage_T *tp; |
| 1557 | win_T *wp; |
| 1558 | |
| 1559 | FOR_ALL_TAB_WINDOWS(tp, wp) |
| 1560 | { |
| 1561 | if (wp == aucmd_win) |
| 1562 | { |
| 1563 | if (tp != curtab) |
| 1564 | goto_tabpage_tp(tp, TRUE, TRUE); |
| 1565 | win_goto(aucmd_win); |
| 1566 | goto win_found; |
| 1567 | } |
| 1568 | } |
| 1569 | } |
| 1570 | win_found: |
| 1571 | |
| 1572 | // Remove the window and frame from the tree of frames. |
| 1573 | (void)winframe_remove(curwin, &dummy, NULL); |
| 1574 | win_remove(curwin, NULL); |
| 1575 | aucmd_win_used = FALSE; |
| 1576 | last_status(FALSE); // may need to remove last status line |
| 1577 | |
| 1578 | if (!valid_tabpage_win(curtab)) |
| 1579 | // no valid window in current tabpage |
| 1580 | close_tabpage(curtab); |
| 1581 | |
| 1582 | restore_snapshot(SNAP_AUCMD_IDX, FALSE); |
| 1583 | (void)win_comp_pos(); // recompute window positions |
| 1584 | unblock_autocmds(); |
| 1585 | |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1586 | save_curwin = win_find_by_id(aco->save_curwin_id); |
| 1587 | if (save_curwin != NULL) |
| 1588 | curwin = save_curwin; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1589 | else |
| 1590 | // Hmm, original window disappeared. Just use the first one. |
| 1591 | curwin = firstwin; |
Bram Moolenaar | bdf931c | 2020-10-01 22:37:40 +0200 | [diff] [blame] | 1592 | curbuf = curwin->w_buffer; |
| 1593 | #ifdef FEAT_JOB_CHANNEL |
| 1594 | // May need to restore insert mode for a prompt buffer. |
| 1595 | entering_window(curwin); |
| 1596 | #endif |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1597 | prevwin = win_find_by_id(aco->save_prevwin_id); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1598 | #ifdef FEAT_EVAL |
| 1599 | vars_clear(&aucmd_win->w_vars->dv_hashtab); // free all w: variables |
| 1600 | hash_init(&aucmd_win->w_vars->dv_hashtab); // re-use the hashtab |
| 1601 | #endif |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1602 | vim_free(globaldir); |
| 1603 | globaldir = aco->globaldir; |
| 1604 | |
| 1605 | // the buffer contents may have changed |
| 1606 | check_cursor(); |
| 1607 | if (curwin->w_topline > curbuf->b_ml.ml_line_count) |
| 1608 | { |
| 1609 | curwin->w_topline = curbuf->b_ml.ml_line_count; |
| 1610 | #ifdef FEAT_DIFF |
| 1611 | curwin->w_topfill = 0; |
| 1612 | #endif |
| 1613 | } |
| 1614 | #if defined(FEAT_GUI) |
Bram Moolenaar | d2ff705 | 2021-12-17 16:00:04 +0000 | [diff] [blame] | 1615 | if (gui.in_use) |
| 1616 | { |
| 1617 | // Hide the scrollbars from the aucmd_win and update. |
| 1618 | gui_mch_enable_scrollbar( |
| 1619 | &aucmd_win->w_scrollbars[SBAR_LEFT], FALSE); |
| 1620 | gui_mch_enable_scrollbar( |
| 1621 | &aucmd_win->w_scrollbars[SBAR_RIGHT], FALSE); |
| 1622 | gui_may_update_scrollbars(); |
| 1623 | } |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1624 | #endif |
| 1625 | } |
| 1626 | else |
| 1627 | { |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1628 | // Restore curwin. Use the window ID, a window may have been closed |
| 1629 | // and the memory re-used for another one. |
| 1630 | save_curwin = win_find_by_id(aco->save_curwin_id); |
| 1631 | if (save_curwin != NULL) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1632 | { |
| 1633 | // Restore the buffer which was previously edited by curwin, if |
| 1634 | // it was changed, we are still the same window and the buffer is |
| 1635 | // valid. |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1636 | if (curwin->w_id == aco->new_curwin_id |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1637 | && curbuf != aco->new_curbuf.br_buf |
| 1638 | && bufref_valid(&aco->new_curbuf) |
| 1639 | && aco->new_curbuf.br_buf->b_ml.ml_mfp != NULL) |
| 1640 | { |
| 1641 | # if defined(FEAT_SYN_HL) || defined(FEAT_SPELL) |
| 1642 | if (curwin->w_s == &curbuf->b_s) |
| 1643 | curwin->w_s = &aco->new_curbuf.br_buf->b_s; |
| 1644 | # endif |
| 1645 | --curbuf->b_nwindows; |
| 1646 | curbuf = aco->new_curbuf.br_buf; |
| 1647 | curwin->w_buffer = curbuf; |
| 1648 | ++curbuf->b_nwindows; |
| 1649 | } |
| 1650 | |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1651 | curwin = save_curwin; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1652 | curbuf = curwin->w_buffer; |
Bram Moolenaar | cbcd9cb | 2020-11-07 16:58:59 +0100 | [diff] [blame] | 1653 | prevwin = win_find_by_id(aco->save_prevwin_id); |
Bram Moolenaar | 32aa102 | 2019-11-02 22:54:41 +0100 | [diff] [blame] | 1654 | // In case the autocommand moves the cursor to a position that |
| 1655 | // does not exist in curbuf. |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1656 | check_cursor(); |
| 1657 | } |
| 1658 | } |
| 1659 | } |
| 1660 | |
| 1661 | static int autocmd_nested = FALSE; |
| 1662 | |
| 1663 | /* |
| 1664 | * Execute autocommands for "event" and file name "fname". |
| 1665 | * Return TRUE if some commands were executed. |
| 1666 | */ |
| 1667 | int |
| 1668 | apply_autocmds( |
| 1669 | event_T event, |
| 1670 | char_u *fname, // NULL or empty means use actual file name |
| 1671 | char_u *fname_io, // fname to use for <afile> on cmdline |
| 1672 | int force, // when TRUE, ignore autocmd_busy |
| 1673 | buf_T *buf) // buffer for <abuf> |
| 1674 | { |
| 1675 | return apply_autocmds_group(event, fname, fname_io, force, |
| 1676 | AUGROUP_ALL, buf, NULL); |
| 1677 | } |
| 1678 | |
| 1679 | /* |
| 1680 | * Like apply_autocmds(), but with extra "eap" argument. This takes care of |
| 1681 | * setting v:filearg. |
| 1682 | */ |
| 1683 | int |
| 1684 | apply_autocmds_exarg( |
| 1685 | event_T event, |
| 1686 | char_u *fname, |
| 1687 | char_u *fname_io, |
| 1688 | int force, |
| 1689 | buf_T *buf, |
| 1690 | exarg_T *eap) |
| 1691 | { |
| 1692 | return apply_autocmds_group(event, fname, fname_io, force, |
| 1693 | AUGROUP_ALL, buf, eap); |
| 1694 | } |
| 1695 | |
| 1696 | /* |
| 1697 | * Like apply_autocmds(), but handles the caller's retval. If the script |
| 1698 | * processing is being aborted or if retval is FAIL when inside a try |
| 1699 | * conditional, no autocommands are executed. If otherwise the autocommands |
| 1700 | * cause the script to be aborted, retval is set to FAIL. |
| 1701 | */ |
| 1702 | int |
| 1703 | apply_autocmds_retval( |
| 1704 | event_T event, |
| 1705 | char_u *fname, // NULL or empty means use actual file name |
| 1706 | char_u *fname_io, // fname to use for <afile> on cmdline |
| 1707 | int force, // when TRUE, ignore autocmd_busy |
| 1708 | buf_T *buf, // buffer for <abuf> |
| 1709 | int *retval) // pointer to caller's retval |
| 1710 | { |
| 1711 | int did_cmd; |
| 1712 | |
| 1713 | #ifdef FEAT_EVAL |
| 1714 | if (should_abort(*retval)) |
| 1715 | return FALSE; |
| 1716 | #endif |
| 1717 | |
| 1718 | did_cmd = apply_autocmds_group(event, fname, fname_io, force, |
| 1719 | AUGROUP_ALL, buf, NULL); |
| 1720 | if (did_cmd |
| 1721 | #ifdef FEAT_EVAL |
| 1722 | && aborting() |
| 1723 | #endif |
| 1724 | ) |
| 1725 | *retval = FAIL; |
| 1726 | return did_cmd; |
| 1727 | } |
| 1728 | |
| 1729 | /* |
| 1730 | * Return TRUE when there is a CursorHold autocommand defined. |
| 1731 | */ |
Bram Moolenaar | 5843f5f | 2019-08-20 20:13:45 +0200 | [diff] [blame] | 1732 | static int |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1733 | has_cursorhold(void) |
| 1734 | { |
| 1735 | return (first_autopat[(int)(get_real_state() == NORMAL_BUSY |
| 1736 | ? EVENT_CURSORHOLD : EVENT_CURSORHOLDI)] != NULL); |
| 1737 | } |
| 1738 | |
| 1739 | /* |
| 1740 | * Return TRUE if the CursorHold event can be triggered. |
| 1741 | */ |
| 1742 | int |
| 1743 | trigger_cursorhold(void) |
| 1744 | { |
| 1745 | int state; |
| 1746 | |
| 1747 | if (!did_cursorhold |
| 1748 | && has_cursorhold() |
| 1749 | && reg_recording == 0 |
| 1750 | && typebuf.tb_len == 0 |
Bram Moolenaar | e2c453d | 2019-08-21 14:37:09 +0200 | [diff] [blame] | 1751 | && !ins_compl_active()) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1752 | { |
| 1753 | state = get_real_state(); |
| 1754 | if (state == NORMAL_BUSY || (state & INSERT) != 0) |
| 1755 | return TRUE; |
| 1756 | } |
| 1757 | return FALSE; |
| 1758 | } |
| 1759 | |
| 1760 | /* |
| 1761 | * Return TRUE when there is a CursorMoved autocommand defined. |
| 1762 | */ |
| 1763 | int |
| 1764 | has_cursormoved(void) |
| 1765 | { |
| 1766 | return (first_autopat[(int)EVENT_CURSORMOVED] != NULL); |
| 1767 | } |
| 1768 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1769 | /* |
| 1770 | * Return TRUE when there is a CursorMovedI autocommand defined. |
| 1771 | */ |
| 1772 | int |
| 1773 | has_cursormovedI(void) |
| 1774 | { |
| 1775 | return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL); |
| 1776 | } |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1777 | |
| 1778 | /* |
| 1779 | * Return TRUE when there is a TextChanged autocommand defined. |
| 1780 | */ |
| 1781 | int |
| 1782 | has_textchanged(void) |
| 1783 | { |
| 1784 | return (first_autopat[(int)EVENT_TEXTCHANGED] != NULL); |
| 1785 | } |
| 1786 | |
| 1787 | /* |
| 1788 | * Return TRUE when there is a TextChangedI autocommand defined. |
| 1789 | */ |
| 1790 | int |
| 1791 | has_textchangedI(void) |
| 1792 | { |
| 1793 | return (first_autopat[(int)EVENT_TEXTCHANGEDI] != NULL); |
| 1794 | } |
| 1795 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1796 | /* |
| 1797 | * Return TRUE when there is a TextChangedP autocommand defined. |
| 1798 | */ |
| 1799 | int |
| 1800 | has_textchangedP(void) |
| 1801 | { |
| 1802 | return (first_autopat[(int)EVENT_TEXTCHANGEDP] != NULL); |
| 1803 | } |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1804 | |
| 1805 | /* |
| 1806 | * Return TRUE when there is an InsertCharPre autocommand defined. |
| 1807 | */ |
| 1808 | int |
| 1809 | has_insertcharpre(void) |
| 1810 | { |
| 1811 | return (first_autopat[(int)EVENT_INSERTCHARPRE] != NULL); |
| 1812 | } |
| 1813 | |
| 1814 | /* |
| 1815 | * Return TRUE when there is an CmdUndefined autocommand defined. |
| 1816 | */ |
| 1817 | int |
| 1818 | has_cmdundefined(void) |
| 1819 | { |
| 1820 | return (first_autopat[(int)EVENT_CMDUNDEFINED] != NULL); |
| 1821 | } |
| 1822 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1823 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 1824 | /* |
| 1825 | * Return TRUE when there is a TextYankPost autocommand defined. |
| 1826 | */ |
| 1827 | int |
| 1828 | has_textyankpost(void) |
| 1829 | { |
| 1830 | return (first_autopat[(int)EVENT_TEXTYANKPOST] != NULL); |
| 1831 | } |
| 1832 | #endif |
| 1833 | |
Bram Moolenaar | d7f246c | 2019-04-08 18:15:41 +0200 | [diff] [blame] | 1834 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 1835 | /* |
| 1836 | * Return TRUE when there is a CompleteChanged autocommand defined. |
| 1837 | */ |
| 1838 | int |
| 1839 | has_completechanged(void) |
| 1840 | { |
| 1841 | return (first_autopat[(int)EVENT_COMPLETECHANGED] != NULL); |
| 1842 | } |
| 1843 | #endif |
| 1844 | |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 1845 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 1846 | /* |
| 1847 | * Return TRUE when there is a ModeChanged autocommand defined. |
| 1848 | */ |
| 1849 | int |
| 1850 | has_modechanged(void) |
| 1851 | { |
| 1852 | return (first_autopat[(int)EVENT_MODECHANGED] != NULL); |
| 1853 | } |
| 1854 | #endif |
| 1855 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1856 | /* |
| 1857 | * Execute autocommands for "event" and file name "fname". |
| 1858 | * Return TRUE if some commands were executed. |
| 1859 | */ |
| 1860 | static int |
| 1861 | apply_autocmds_group( |
| 1862 | event_T event, |
| 1863 | char_u *fname, // NULL or empty means use actual file name |
| 1864 | char_u *fname_io, // fname to use for <afile> on cmdline, NULL means |
| 1865 | // use fname |
| 1866 | int force, // when TRUE, ignore autocmd_busy |
| 1867 | int group, // group ID, or AUGROUP_ALL |
| 1868 | buf_T *buf, // buffer for <abuf> |
| 1869 | exarg_T *eap UNUSED) // command arguments |
| 1870 | { |
| 1871 | char_u *sfname = NULL; // short file name |
| 1872 | char_u *tail; |
| 1873 | int save_changed; |
| 1874 | buf_T *old_curbuf; |
| 1875 | int retval = FALSE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1876 | char_u *save_autocmd_fname; |
| 1877 | int save_autocmd_fname_full; |
| 1878 | int save_autocmd_bufnr; |
| 1879 | char_u *save_autocmd_match; |
| 1880 | int save_autocmd_busy; |
| 1881 | int save_autocmd_nested; |
| 1882 | static int nesting = 0; |
| 1883 | AutoPatCmd patcmd; |
| 1884 | AutoPat *ap; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1885 | sctx_T save_current_sctx; |
Bram Moolenaar | 9b8d622 | 2020-12-28 18:26:00 +0100 | [diff] [blame] | 1886 | #ifdef FEAT_EVAL |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1887 | funccal_entry_T funccal_entry; |
| 1888 | char_u *save_cmdarg; |
| 1889 | long save_cmdbang; |
| 1890 | #endif |
| 1891 | static int filechangeshell_busy = FALSE; |
| 1892 | #ifdef FEAT_PROFILE |
| 1893 | proftime_T wait_time; |
| 1894 | #endif |
| 1895 | int did_save_redobuff = FALSE; |
| 1896 | save_redo_T save_redo; |
| 1897 | int save_KeyTyped = KeyTyped; |
ichizok | c3f91c0 | 2021-12-17 09:44:33 +0000 | [diff] [blame] | 1898 | int save_did_emsg; |
Bram Moolenaar | e31ee86 | 2020-01-07 20:59:34 +0100 | [diff] [blame] | 1899 | ESTACK_CHECK_DECLARATION |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1900 | |
| 1901 | /* |
| 1902 | * Quickly return if there are no autocommands for this event or |
| 1903 | * autocommands are blocked. |
| 1904 | */ |
| 1905 | if (event == NUM_EVENTS || first_autopat[(int)event] == NULL |
| 1906 | || autocmd_blocked > 0) |
| 1907 | goto BYPASS_AU; |
| 1908 | |
| 1909 | /* |
| 1910 | * When autocommands are busy, new autocommands are only executed when |
| 1911 | * explicitly enabled with the "nested" flag. |
| 1912 | */ |
| 1913 | if (autocmd_busy && !(force || autocmd_nested)) |
| 1914 | goto BYPASS_AU; |
| 1915 | |
| 1916 | #ifdef FEAT_EVAL |
| 1917 | /* |
| 1918 | * Quickly return when immediately aborting on error, or when an interrupt |
| 1919 | * occurred or an exception was thrown but not caught. |
| 1920 | */ |
| 1921 | if (aborting()) |
| 1922 | goto BYPASS_AU; |
| 1923 | #endif |
| 1924 | |
| 1925 | /* |
| 1926 | * FileChangedShell never nests, because it can create an endless loop. |
| 1927 | */ |
| 1928 | if (filechangeshell_busy && (event == EVENT_FILECHANGEDSHELL |
| 1929 | || event == EVENT_FILECHANGEDSHELLPOST)) |
| 1930 | goto BYPASS_AU; |
| 1931 | |
| 1932 | /* |
| 1933 | * Ignore events in 'eventignore'. |
| 1934 | */ |
| 1935 | if (event_ignored(event)) |
| 1936 | goto BYPASS_AU; |
| 1937 | |
| 1938 | /* |
| 1939 | * Allow nesting of autocommands, but restrict the depth, because it's |
| 1940 | * possible to create an endless loop. |
| 1941 | */ |
| 1942 | if (nesting == 10) |
| 1943 | { |
Bram Moolenaar | 6d05701 | 2021-12-31 18:49:43 +0000 | [diff] [blame] | 1944 | emsg(_(e_autocommand_nesting_too_deep)); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1945 | goto BYPASS_AU; |
| 1946 | } |
| 1947 | |
| 1948 | /* |
| 1949 | * Check if these autocommands are disabled. Used when doing ":all" or |
| 1950 | * ":ball". |
| 1951 | */ |
| 1952 | if ( (autocmd_no_enter |
| 1953 | && (event == EVENT_WINENTER || event == EVENT_BUFENTER)) |
| 1954 | || (autocmd_no_leave |
| 1955 | && (event == EVENT_WINLEAVE || event == EVENT_BUFLEAVE))) |
| 1956 | goto BYPASS_AU; |
| 1957 | |
| 1958 | /* |
| 1959 | * Save the autocmd_* variables and info about the current buffer. |
| 1960 | */ |
| 1961 | save_autocmd_fname = autocmd_fname; |
| 1962 | save_autocmd_fname_full = autocmd_fname_full; |
| 1963 | save_autocmd_bufnr = autocmd_bufnr; |
| 1964 | save_autocmd_match = autocmd_match; |
| 1965 | save_autocmd_busy = autocmd_busy; |
| 1966 | save_autocmd_nested = autocmd_nested; |
| 1967 | save_changed = curbuf->b_changed; |
| 1968 | old_curbuf = curbuf; |
| 1969 | |
| 1970 | /* |
| 1971 | * Set the file name to be used for <afile>. |
| 1972 | * Make a copy to avoid that changing a buffer name or directory makes it |
| 1973 | * invalid. |
| 1974 | */ |
| 1975 | if (fname_io == NULL) |
| 1976 | { |
| 1977 | if (event == EVENT_COLORSCHEME || event == EVENT_COLORSCHEMEPRE |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 1978 | || event == EVENT_OPTIONSET |
| 1979 | || event == EVENT_MODECHANGED) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 1980 | autocmd_fname = NULL; |
| 1981 | else if (fname != NULL && !ends_excmd(*fname)) |
| 1982 | autocmd_fname = fname; |
| 1983 | else if (buf != NULL) |
| 1984 | autocmd_fname = buf->b_ffname; |
| 1985 | else |
| 1986 | autocmd_fname = NULL; |
| 1987 | } |
| 1988 | else |
| 1989 | autocmd_fname = fname_io; |
| 1990 | if (autocmd_fname != NULL) |
| 1991 | autocmd_fname = vim_strsave(autocmd_fname); |
| 1992 | autocmd_fname_full = FALSE; // call FullName_save() later |
| 1993 | |
| 1994 | /* |
| 1995 | * Set the buffer number to be used for <abuf>. |
| 1996 | */ |
| 1997 | if (buf == NULL) |
| 1998 | autocmd_bufnr = 0; |
| 1999 | else |
| 2000 | autocmd_bufnr = buf->b_fnum; |
| 2001 | |
| 2002 | /* |
| 2003 | * When the file name is NULL or empty, use the file name of buffer "buf". |
| 2004 | * Always use the full path of the file name to match with, in case |
| 2005 | * "allow_dirs" is set. |
| 2006 | */ |
| 2007 | if (fname == NULL || *fname == NUL) |
| 2008 | { |
| 2009 | if (buf == NULL) |
| 2010 | fname = NULL; |
| 2011 | else |
| 2012 | { |
| 2013 | #ifdef FEAT_SYN_HL |
| 2014 | if (event == EVENT_SYNTAX) |
| 2015 | fname = buf->b_p_syn; |
| 2016 | else |
| 2017 | #endif |
| 2018 | if (event == EVENT_FILETYPE) |
| 2019 | fname = buf->b_p_ft; |
| 2020 | else |
| 2021 | { |
| 2022 | if (buf->b_sfname != NULL) |
| 2023 | sfname = vim_strsave(buf->b_sfname); |
| 2024 | fname = buf->b_ffname; |
| 2025 | } |
| 2026 | } |
| 2027 | if (fname == NULL) |
| 2028 | fname = (char_u *)""; |
| 2029 | fname = vim_strsave(fname); // make a copy, so we can change it |
| 2030 | } |
| 2031 | else |
| 2032 | { |
| 2033 | sfname = vim_strsave(fname); |
| 2034 | // Don't try expanding FileType, Syntax, FuncUndefined, WindowID, |
| 2035 | // ColorScheme, QuickFixCmd* or DirChanged |
| 2036 | if (event == EVENT_FILETYPE |
| 2037 | || event == EVENT_SYNTAX |
| 2038 | || event == EVENT_CMDLINECHANGED |
| 2039 | || event == EVENT_CMDLINEENTER |
| 2040 | || event == EVENT_CMDLINELEAVE |
| 2041 | || event == EVENT_CMDWINENTER |
| 2042 | || event == EVENT_CMDWINLEAVE |
| 2043 | || event == EVENT_CMDUNDEFINED |
| 2044 | || event == EVENT_FUNCUNDEFINED |
| 2045 | || event == EVENT_REMOTEREPLY |
| 2046 | || event == EVENT_SPELLFILEMISSING |
| 2047 | || event == EVENT_QUICKFIXCMDPRE |
| 2048 | || event == EVENT_COLORSCHEME |
| 2049 | || event == EVENT_COLORSCHEMEPRE |
| 2050 | || event == EVENT_OPTIONSET |
| 2051 | || event == EVENT_QUICKFIXCMDPOST |
=?UTF-8?q?Magnus=20Gro=C3=9F?= | f1e8876 | 2021-09-12 13:39:55 +0200 | [diff] [blame] | 2052 | || event == EVENT_DIRCHANGED |
naohiro ono | 23beefe | 2021-11-13 12:38:49 +0000 | [diff] [blame] | 2053 | || event == EVENT_MODECHANGED |
| 2054 | || event == EVENT_WINCLOSED) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2055 | { |
| 2056 | fname = vim_strsave(fname); |
| 2057 | autocmd_fname_full = TRUE; // don't expand it later |
| 2058 | } |
| 2059 | else |
| 2060 | fname = FullName_save(fname, FALSE); |
| 2061 | } |
| 2062 | if (fname == NULL) // out of memory |
| 2063 | { |
| 2064 | vim_free(sfname); |
| 2065 | retval = FALSE; |
| 2066 | goto BYPASS_AU; |
| 2067 | } |
| 2068 | |
| 2069 | #ifdef BACKSLASH_IN_FILENAME |
| 2070 | /* |
| 2071 | * Replace all backslashes with forward slashes. This makes the |
| 2072 | * autocommand patterns portable between Unix and MS-DOS. |
| 2073 | */ |
| 2074 | if (sfname != NULL) |
| 2075 | forward_slash(sfname); |
| 2076 | forward_slash(fname); |
| 2077 | #endif |
| 2078 | |
| 2079 | #ifdef VMS |
| 2080 | // remove version for correct match |
| 2081 | if (sfname != NULL) |
| 2082 | vms_remove_version(sfname); |
| 2083 | vms_remove_version(fname); |
| 2084 | #endif |
| 2085 | |
| 2086 | /* |
| 2087 | * Set the name to be used for <amatch>. |
| 2088 | */ |
| 2089 | autocmd_match = fname; |
| 2090 | |
| 2091 | |
| 2092 | // Don't redraw while doing autocommands. |
| 2093 | ++RedrawingDisabled; |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2094 | |
| 2095 | // name and lnum are filled in later |
| 2096 | estack_push(ETYPE_AUCMD, NULL, 0); |
Bram Moolenaar | e31ee86 | 2020-01-07 20:59:34 +0100 | [diff] [blame] | 2097 | ESTACK_CHECK_SETUP |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2098 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2099 | save_current_sctx = current_sctx; |
| 2100 | |
Bram Moolenaar | 9b8d622 | 2020-12-28 18:26:00 +0100 | [diff] [blame] | 2101 | #ifdef FEAT_EVAL |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2102 | # ifdef FEAT_PROFILE |
| 2103 | if (do_profiling == PROF_YES) |
| 2104 | prof_child_enter(&wait_time); // doesn't count for the caller itself |
| 2105 | # endif |
| 2106 | |
| 2107 | // Don't use local function variables, if called from a function. |
| 2108 | save_funccal(&funccal_entry); |
| 2109 | #endif |
| 2110 | |
| 2111 | /* |
| 2112 | * When starting to execute autocommands, save the search patterns. |
| 2113 | */ |
| 2114 | if (!autocmd_busy) |
| 2115 | { |
| 2116 | save_search_patterns(); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2117 | if (!ins_compl_active()) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2118 | { |
| 2119 | saveRedobuff(&save_redo); |
| 2120 | did_save_redobuff = TRUE; |
| 2121 | } |
| 2122 | did_filetype = keep_filetype; |
| 2123 | } |
| 2124 | |
| 2125 | /* |
| 2126 | * Note that we are applying autocmds. Some commands need to know. |
| 2127 | */ |
| 2128 | autocmd_busy = TRUE; |
| 2129 | filechangeshell_busy = (event == EVENT_FILECHANGEDSHELL); |
| 2130 | ++nesting; // see matching decrement below |
| 2131 | |
| 2132 | // Remember that FileType was triggered. Used for did_filetype(). |
| 2133 | if (event == EVENT_FILETYPE) |
| 2134 | did_filetype = TRUE; |
| 2135 | |
| 2136 | tail = gettail(fname); |
| 2137 | |
| 2138 | // Find first autocommand that matches |
| 2139 | patcmd.curpat = first_autopat[(int)event]; |
| 2140 | patcmd.nextcmd = NULL; |
| 2141 | patcmd.group = group; |
| 2142 | patcmd.fname = fname; |
| 2143 | patcmd.sfname = sfname; |
| 2144 | patcmd.tail = tail; |
| 2145 | patcmd.event = event; |
| 2146 | patcmd.arg_bufnr = autocmd_bufnr; |
| 2147 | patcmd.next = NULL; |
| 2148 | auto_next_pat(&patcmd, FALSE); |
| 2149 | |
| 2150 | // found one, start executing the autocommands |
| 2151 | if (patcmd.curpat != NULL) |
| 2152 | { |
| 2153 | // add to active_apc_list |
| 2154 | patcmd.next = active_apc_list; |
| 2155 | active_apc_list = &patcmd; |
| 2156 | |
| 2157 | #ifdef FEAT_EVAL |
| 2158 | // set v:cmdarg (only when there is a matching pattern) |
| 2159 | save_cmdbang = (long)get_vim_var_nr(VV_CMDBANG); |
| 2160 | if (eap != NULL) |
| 2161 | { |
| 2162 | save_cmdarg = set_cmdarg(eap, NULL); |
| 2163 | set_vim_var_nr(VV_CMDBANG, (long)eap->forceit); |
| 2164 | } |
| 2165 | else |
| 2166 | save_cmdarg = NULL; // avoid gcc warning |
| 2167 | #endif |
| 2168 | retval = TRUE; |
| 2169 | // mark the last pattern, to avoid an endless loop when more patterns |
| 2170 | // are added when executing autocommands |
| 2171 | for (ap = patcmd.curpat; ap->next != NULL; ap = ap->next) |
| 2172 | ap->last = FALSE; |
| 2173 | ap->last = TRUE; |
Bram Moolenaar | a68e595 | 2019-04-25 22:22:01 +0200 | [diff] [blame] | 2174 | |
Bram Moolenaar | 1e6bbfb | 2021-04-03 13:19:26 +0200 | [diff] [blame] | 2175 | if (nesting == 1) |
| 2176 | // make sure cursor and topline are valid |
| 2177 | check_lnums(TRUE); |
Bram Moolenaar | a68e595 | 2019-04-25 22:22:01 +0200 | [diff] [blame] | 2178 | |
ichizok | c3f91c0 | 2021-12-17 09:44:33 +0000 | [diff] [blame] | 2179 | save_did_emsg = did_emsg; |
| 2180 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2181 | do_cmdline(NULL, getnextac, (void *)&patcmd, |
| 2182 | DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT); |
Bram Moolenaar | a68e595 | 2019-04-25 22:22:01 +0200 | [diff] [blame] | 2183 | |
ichizok | c3f91c0 | 2021-12-17 09:44:33 +0000 | [diff] [blame] | 2184 | did_emsg += save_did_emsg; |
| 2185 | |
Bram Moolenaar | 1e6bbfb | 2021-04-03 13:19:26 +0200 | [diff] [blame] | 2186 | if (nesting == 1) |
| 2187 | // restore cursor and topline, unless they were changed |
| 2188 | reset_lnums(); |
Bram Moolenaar | a68e595 | 2019-04-25 22:22:01 +0200 | [diff] [blame] | 2189 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2190 | #ifdef FEAT_EVAL |
| 2191 | if (eap != NULL) |
| 2192 | { |
| 2193 | (void)set_cmdarg(NULL, save_cmdarg); |
| 2194 | set_vim_var_nr(VV_CMDBANG, save_cmdbang); |
| 2195 | } |
| 2196 | #endif |
| 2197 | // delete from active_apc_list |
| 2198 | if (active_apc_list == &patcmd) // just in case |
| 2199 | active_apc_list = patcmd.next; |
| 2200 | } |
| 2201 | |
| 2202 | --RedrawingDisabled; |
| 2203 | autocmd_busy = save_autocmd_busy; |
| 2204 | filechangeshell_busy = FALSE; |
| 2205 | autocmd_nested = save_autocmd_nested; |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2206 | vim_free(SOURCING_NAME); |
Bram Moolenaar | e31ee86 | 2020-01-07 20:59:34 +0100 | [diff] [blame] | 2207 | ESTACK_CHECK_NOW |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2208 | estack_pop(); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2209 | vim_free(autocmd_fname); |
| 2210 | autocmd_fname = save_autocmd_fname; |
| 2211 | autocmd_fname_full = save_autocmd_fname_full; |
| 2212 | autocmd_bufnr = save_autocmd_bufnr; |
| 2213 | autocmd_match = save_autocmd_match; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2214 | current_sctx = save_current_sctx; |
Bram Moolenaar | 9b8d622 | 2020-12-28 18:26:00 +0100 | [diff] [blame] | 2215 | #ifdef FEAT_EVAL |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2216 | restore_funccal(); |
| 2217 | # ifdef FEAT_PROFILE |
| 2218 | if (do_profiling == PROF_YES) |
| 2219 | prof_child_exit(&wait_time); |
| 2220 | # endif |
| 2221 | #endif |
| 2222 | KeyTyped = save_KeyTyped; |
| 2223 | vim_free(fname); |
| 2224 | vim_free(sfname); |
| 2225 | --nesting; // see matching increment above |
| 2226 | |
| 2227 | /* |
| 2228 | * When stopping to execute autocommands, restore the search patterns and |
| 2229 | * the redo buffer. Free any buffers in the au_pending_free_buf list and |
| 2230 | * free any windows in the au_pending_free_win list. |
| 2231 | */ |
| 2232 | if (!autocmd_busy) |
| 2233 | { |
| 2234 | restore_search_patterns(); |
| 2235 | if (did_save_redobuff) |
| 2236 | restoreRedobuff(&save_redo); |
| 2237 | did_filetype = FALSE; |
| 2238 | while (au_pending_free_buf != NULL) |
| 2239 | { |
| 2240 | buf_T *b = au_pending_free_buf->b_next; |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 2241 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2242 | vim_free(au_pending_free_buf); |
| 2243 | au_pending_free_buf = b; |
| 2244 | } |
| 2245 | while (au_pending_free_win != NULL) |
| 2246 | { |
| 2247 | win_T *w = au_pending_free_win->w_next; |
Bram Moolenaar | 41cd803 | 2021-03-13 15:47:56 +0100 | [diff] [blame] | 2248 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2249 | vim_free(au_pending_free_win); |
| 2250 | au_pending_free_win = w; |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | /* |
| 2255 | * Some events don't set or reset the Changed flag. |
| 2256 | * Check if still in the same buffer! |
| 2257 | */ |
| 2258 | if (curbuf == old_curbuf |
| 2259 | && (event == EVENT_BUFREADPOST |
| 2260 | || event == EVENT_BUFWRITEPOST |
| 2261 | || event == EVENT_FILEAPPENDPOST |
| 2262 | || event == EVENT_VIMLEAVE |
| 2263 | || event == EVENT_VIMLEAVEPRE)) |
| 2264 | { |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2265 | if (curbuf->b_changed != save_changed) |
| 2266 | need_maketitle = TRUE; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2267 | curbuf->b_changed = save_changed; |
| 2268 | } |
| 2269 | |
| 2270 | au_cleanup(); // may really delete removed patterns/commands now |
| 2271 | |
| 2272 | BYPASS_AU: |
| 2273 | // When wiping out a buffer make sure all its buffer-local autocommands |
| 2274 | // are deleted. |
| 2275 | if (event == EVENT_BUFWIPEOUT && buf != NULL) |
| 2276 | aubuflocal_remove(buf); |
| 2277 | |
| 2278 | if (retval == OK && event == EVENT_FILETYPE) |
| 2279 | au_did_filetype = TRUE; |
| 2280 | |
| 2281 | return retval; |
| 2282 | } |
| 2283 | |
| 2284 | # ifdef FEAT_EVAL |
| 2285 | static char_u *old_termresponse = NULL; |
| 2286 | # endif |
| 2287 | |
| 2288 | /* |
| 2289 | * Block triggering autocommands until unblock_autocmd() is called. |
| 2290 | * Can be used recursively, so long as it's symmetric. |
| 2291 | */ |
| 2292 | void |
| 2293 | block_autocmds(void) |
| 2294 | { |
| 2295 | # ifdef FEAT_EVAL |
| 2296 | // Remember the value of v:termresponse. |
| 2297 | if (autocmd_blocked == 0) |
| 2298 | old_termresponse = get_vim_var_str(VV_TERMRESPONSE); |
| 2299 | # endif |
| 2300 | ++autocmd_blocked; |
| 2301 | } |
| 2302 | |
| 2303 | void |
| 2304 | unblock_autocmds(void) |
| 2305 | { |
| 2306 | --autocmd_blocked; |
| 2307 | |
| 2308 | # ifdef FEAT_EVAL |
| 2309 | // When v:termresponse was set while autocommands were blocked, trigger |
| 2310 | // the autocommands now. Esp. useful when executing a shell command |
| 2311 | // during startup (vimdiff). |
| 2312 | if (autocmd_blocked == 0 |
| 2313 | && get_vim_var_str(VV_TERMRESPONSE) != old_termresponse) |
| 2314 | apply_autocmds(EVENT_TERMRESPONSE, NULL, NULL, FALSE, curbuf); |
| 2315 | # endif |
| 2316 | } |
| 2317 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2318 | int |
| 2319 | is_autocmd_blocked(void) |
| 2320 | { |
| 2321 | return autocmd_blocked != 0; |
| 2322 | } |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2323 | |
| 2324 | /* |
| 2325 | * Find next autocommand pattern that matches. |
| 2326 | */ |
| 2327 | static void |
| 2328 | auto_next_pat( |
| 2329 | AutoPatCmd *apc, |
| 2330 | int stop_at_last) // stop when 'last' flag is set |
| 2331 | { |
| 2332 | AutoPat *ap; |
| 2333 | AutoCmd *cp; |
| 2334 | char_u *name; |
| 2335 | char *s; |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2336 | char_u **sourcing_namep = &SOURCING_NAME; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2337 | |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2338 | VIM_CLEAR(*sourcing_namep); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2339 | |
| 2340 | for (ap = apc->curpat; ap != NULL && !got_int; ap = ap->next) |
| 2341 | { |
| 2342 | apc->curpat = NULL; |
| 2343 | |
| 2344 | // Only use a pattern when it has not been removed, has commands and |
| 2345 | // the group matches. For buffer-local autocommands only check the |
| 2346 | // buffer number. |
| 2347 | if (ap->pat != NULL && ap->cmds != NULL |
| 2348 | && (apc->group == AUGROUP_ALL || apc->group == ap->group)) |
| 2349 | { |
| 2350 | // execution-condition |
| 2351 | if (ap->buflocal_nr == 0 |
| 2352 | ? (match_file_pat(NULL, &ap->reg_prog, apc->fname, |
| 2353 | apc->sfname, apc->tail, ap->allow_dirs)) |
| 2354 | : ap->buflocal_nr == apc->arg_bufnr) |
| 2355 | { |
| 2356 | name = event_nr2name(apc->event); |
| 2357 | s = _("%s Autocommands for \"%s\""); |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2358 | *sourcing_namep = alloc(STRLEN(s) |
Bram Moolenaar | 964b374 | 2019-05-24 18:54:09 +0200 | [diff] [blame] | 2359 | + STRLEN(name) + ap->patlen + 1); |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2360 | if (*sourcing_namep != NULL) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2361 | { |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2362 | sprintf((char *)*sourcing_namep, s, |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2363 | (char *)name, (char *)ap->pat); |
| 2364 | if (p_verbose >= 8) |
| 2365 | { |
| 2366 | verbose_enter(); |
Bram Moolenaar | 1a47ae3 | 2019-12-29 23:04:25 +0100 | [diff] [blame] | 2367 | smsg(_("Executing %s"), *sourcing_namep); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2368 | verbose_leave(); |
| 2369 | } |
| 2370 | } |
| 2371 | |
| 2372 | apc->curpat = ap; |
| 2373 | apc->nextcmd = ap->cmds; |
| 2374 | // mark last command |
| 2375 | for (cp = ap->cmds; cp->next != NULL; cp = cp->next) |
| 2376 | cp->last = FALSE; |
| 2377 | cp->last = TRUE; |
| 2378 | } |
| 2379 | line_breakcheck(); |
| 2380 | if (apc->curpat != NULL) // found a match |
| 2381 | break; |
| 2382 | } |
| 2383 | if (stop_at_last && ap->last) |
| 2384 | break; |
| 2385 | } |
| 2386 | } |
| 2387 | |
| 2388 | /* |
| 2389 | * Get next autocommand command. |
| 2390 | * Called by do_cmdline() to get the next line for ":if". |
| 2391 | * Returns allocated string, or NULL for end of autocommands. |
| 2392 | */ |
| 2393 | char_u * |
Bram Moolenaar | 66250c9 | 2020-08-20 15:02:42 +0200 | [diff] [blame] | 2394 | getnextac( |
| 2395 | int c UNUSED, |
| 2396 | void *cookie, |
| 2397 | int indent UNUSED, |
| 2398 | getline_opt_T options UNUSED) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2399 | { |
| 2400 | AutoPatCmd *acp = (AutoPatCmd *)cookie; |
| 2401 | char_u *retval; |
| 2402 | AutoCmd *ac; |
| 2403 | |
| 2404 | // Can be called again after returning the last line. |
| 2405 | if (acp->curpat == NULL) |
| 2406 | return NULL; |
| 2407 | |
| 2408 | // repeat until we find an autocommand to execute |
| 2409 | for (;;) |
| 2410 | { |
| 2411 | // skip removed commands |
| 2412 | while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL) |
| 2413 | if (acp->nextcmd->last) |
| 2414 | acp->nextcmd = NULL; |
| 2415 | else |
| 2416 | acp->nextcmd = acp->nextcmd->next; |
| 2417 | |
| 2418 | if (acp->nextcmd != NULL) |
| 2419 | break; |
| 2420 | |
| 2421 | // at end of commands, find next pattern that matches |
| 2422 | if (acp->curpat->last) |
| 2423 | acp->curpat = NULL; |
| 2424 | else |
| 2425 | acp->curpat = acp->curpat->next; |
| 2426 | if (acp->curpat != NULL) |
| 2427 | auto_next_pat(acp, TRUE); |
| 2428 | if (acp->curpat == NULL) |
| 2429 | return NULL; |
| 2430 | } |
| 2431 | |
| 2432 | ac = acp->nextcmd; |
| 2433 | |
| 2434 | if (p_verbose >= 9) |
| 2435 | { |
| 2436 | verbose_enter_scroll(); |
| 2437 | smsg(_("autocommand %s"), ac->cmd); |
| 2438 | msg_puts("\n"); // don't overwrite this either |
| 2439 | verbose_leave_scroll(); |
| 2440 | } |
| 2441 | retval = vim_strsave(ac->cmd); |
Bram Moolenaar | eb93f3f | 2019-04-04 15:04:56 +0200 | [diff] [blame] | 2442 | // Remove one-shot ("once") autocmd in anticipation of its execution. |
| 2443 | if (ac->once) |
| 2444 | au_del_cmd(ac); |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2445 | autocmd_nested = ac->nested; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2446 | current_sctx = ac->script_ctx; |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2447 | if (ac->last) |
| 2448 | acp->nextcmd = NULL; |
| 2449 | else |
| 2450 | acp->nextcmd = ac->next; |
| 2451 | return retval; |
| 2452 | } |
| 2453 | |
| 2454 | /* |
| 2455 | * Return TRUE if there is a matching autocommand for "fname". |
| 2456 | * To account for buffer-local autocommands, function needs to know |
| 2457 | * in which buffer the file will be opened. |
| 2458 | */ |
| 2459 | int |
| 2460 | has_autocmd(event_T event, char_u *sfname, buf_T *buf) |
| 2461 | { |
| 2462 | AutoPat *ap; |
| 2463 | char_u *fname; |
| 2464 | char_u *tail = gettail(sfname); |
| 2465 | int retval = FALSE; |
| 2466 | |
| 2467 | fname = FullName_save(sfname, FALSE); |
| 2468 | if (fname == NULL) |
| 2469 | return FALSE; |
| 2470 | |
| 2471 | #ifdef BACKSLASH_IN_FILENAME |
| 2472 | /* |
| 2473 | * Replace all backslashes with forward slashes. This makes the |
| 2474 | * autocommand patterns portable between Unix and MS-DOS. |
| 2475 | */ |
| 2476 | sfname = vim_strsave(sfname); |
| 2477 | if (sfname != NULL) |
| 2478 | forward_slash(sfname); |
| 2479 | forward_slash(fname); |
| 2480 | #endif |
| 2481 | |
Bram Moolenaar | aeea721 | 2020-04-02 18:50:46 +0200 | [diff] [blame] | 2482 | FOR_ALL_AUTOCMD_PATTERNS(event, ap) |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2483 | if (ap->pat != NULL && ap->cmds != NULL |
| 2484 | && (ap->buflocal_nr == 0 |
| 2485 | ? match_file_pat(NULL, &ap->reg_prog, |
| 2486 | fname, sfname, tail, ap->allow_dirs) |
| 2487 | : buf != NULL && ap->buflocal_nr == buf->b_fnum |
| 2488 | )) |
| 2489 | { |
| 2490 | retval = TRUE; |
| 2491 | break; |
| 2492 | } |
| 2493 | |
| 2494 | vim_free(fname); |
| 2495 | #ifdef BACKSLASH_IN_FILENAME |
| 2496 | vim_free(sfname); |
| 2497 | #endif |
| 2498 | |
| 2499 | return retval; |
| 2500 | } |
| 2501 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2502 | /* |
| 2503 | * Function given to ExpandGeneric() to obtain the list of autocommand group |
| 2504 | * names. |
| 2505 | */ |
| 2506 | char_u * |
| 2507 | get_augroup_name(expand_T *xp UNUSED, int idx) |
| 2508 | { |
| 2509 | if (idx == augroups.ga_len) // add "END" add the end |
| 2510 | return (char_u *)"END"; |
| 2511 | if (idx >= augroups.ga_len) // end of list |
| 2512 | return NULL; |
| 2513 | if (AUGROUP_NAME(idx) == NULL || AUGROUP_NAME(idx) == get_deleted_augroup()) |
| 2514 | // skip deleted entries |
| 2515 | return (char_u *)""; |
| 2516 | return AUGROUP_NAME(idx); // return a name |
| 2517 | } |
| 2518 | |
| 2519 | static int include_groups = FALSE; |
| 2520 | |
| 2521 | char_u * |
| 2522 | set_context_in_autocmd( |
| 2523 | expand_T *xp, |
| 2524 | char_u *arg, |
| 2525 | int doautocmd) // TRUE for :doauto*, FALSE for :autocmd |
| 2526 | { |
| 2527 | char_u *p; |
| 2528 | int group; |
| 2529 | |
| 2530 | // check for a group name, skip it if present |
| 2531 | include_groups = FALSE; |
| 2532 | p = arg; |
| 2533 | group = au_get_grouparg(&arg); |
| 2534 | if (group == AUGROUP_ERROR) |
| 2535 | return NULL; |
| 2536 | // If there only is a group name that's what we expand. |
| 2537 | if (*arg == NUL && group != AUGROUP_ALL && !VIM_ISWHITE(arg[-1])) |
| 2538 | { |
| 2539 | arg = p; |
| 2540 | group = AUGROUP_ALL; |
| 2541 | } |
| 2542 | |
| 2543 | // skip over event name |
| 2544 | for (p = arg; *p != NUL && !VIM_ISWHITE(*p); ++p) |
| 2545 | if (*p == ',') |
| 2546 | arg = p + 1; |
| 2547 | if (*p == NUL) |
| 2548 | { |
| 2549 | if (group == AUGROUP_ALL) |
| 2550 | include_groups = TRUE; |
| 2551 | xp->xp_context = EXPAND_EVENTS; // expand event name |
| 2552 | xp->xp_pattern = arg; |
| 2553 | return NULL; |
| 2554 | } |
| 2555 | |
| 2556 | // skip over pattern |
| 2557 | arg = skipwhite(p); |
| 2558 | while (*arg && (!VIM_ISWHITE(*arg) || arg[-1] == '\\')) |
| 2559 | arg++; |
| 2560 | if (*arg) |
| 2561 | return arg; // expand (next) command |
| 2562 | |
| 2563 | if (doautocmd) |
| 2564 | xp->xp_context = EXPAND_FILES; // expand file names |
| 2565 | else |
| 2566 | xp->xp_context = EXPAND_NOTHING; // pattern is not expanded |
| 2567 | return NULL; |
| 2568 | } |
| 2569 | |
| 2570 | /* |
| 2571 | * Function given to ExpandGeneric() to obtain the list of event names. |
| 2572 | */ |
| 2573 | char_u * |
| 2574 | get_event_name(expand_T *xp UNUSED, int idx) |
| 2575 | { |
| 2576 | if (idx < augroups.ga_len) // First list group names, if wanted |
| 2577 | { |
| 2578 | if (!include_groups || AUGROUP_NAME(idx) == NULL |
| 2579 | || AUGROUP_NAME(idx) == get_deleted_augroup()) |
| 2580 | return (char_u *)""; // skip deleted entries |
| 2581 | return AUGROUP_NAME(idx); // return a name |
| 2582 | } |
| 2583 | return (char_u *)event_names[idx - augroups.ga_len].name; |
| 2584 | } |
| 2585 | |
Bram Moolenaar | 3e460fd | 2019-01-26 16:21:07 +0100 | [diff] [blame] | 2586 | |
| 2587 | #if defined(FEAT_EVAL) || defined(PROTO) |
| 2588 | /* |
| 2589 | * Return TRUE if autocmd is supported. |
| 2590 | */ |
| 2591 | int |
| 2592 | autocmd_supported(char_u *name) |
| 2593 | { |
| 2594 | char_u *p; |
| 2595 | |
| 2596 | return (event_name2nr(name, &p) != NUM_EVENTS); |
| 2597 | } |
| 2598 | |
| 2599 | /* |
| 2600 | * Return TRUE if an autocommand is defined for a group, event and |
| 2601 | * pattern: The group can be omitted to accept any group. "event" and "pattern" |
| 2602 | * can be NULL to accept any event and pattern. "pattern" can be NULL to accept |
| 2603 | * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted. |
| 2604 | * Used for: |
| 2605 | * exists("#Group") or |
| 2606 | * exists("#Group#Event") or |
| 2607 | * exists("#Group#Event#pat") or |
| 2608 | * exists("#Event") or |
| 2609 | * exists("#Event#pat") |
| 2610 | */ |
| 2611 | int |
| 2612 | au_exists(char_u *arg) |
| 2613 | { |
| 2614 | char_u *arg_save; |
| 2615 | char_u *pattern = NULL; |
| 2616 | char_u *event_name; |
| 2617 | char_u *p; |
| 2618 | event_T event; |
| 2619 | AutoPat *ap; |
| 2620 | buf_T *buflocal_buf = NULL; |
| 2621 | int group; |
| 2622 | int retval = FALSE; |
| 2623 | |
| 2624 | // Make a copy so that we can change the '#' chars to a NUL. |
| 2625 | arg_save = vim_strsave(arg); |
| 2626 | if (arg_save == NULL) |
| 2627 | return FALSE; |
| 2628 | p = vim_strchr(arg_save, '#'); |
| 2629 | if (p != NULL) |
| 2630 | *p++ = NUL; |
| 2631 | |
| 2632 | // First, look for an autocmd group name |
| 2633 | group = au_find_group(arg_save); |
| 2634 | if (group == AUGROUP_ERROR) |
| 2635 | { |
| 2636 | // Didn't match a group name, assume the first argument is an event. |
| 2637 | group = AUGROUP_ALL; |
| 2638 | event_name = arg_save; |
| 2639 | } |
| 2640 | else |
| 2641 | { |
| 2642 | if (p == NULL) |
| 2643 | { |
| 2644 | // "Group": group name is present and it's recognized |
| 2645 | retval = TRUE; |
| 2646 | goto theend; |
| 2647 | } |
| 2648 | |
| 2649 | // Must be "Group#Event" or "Group#Event#pat". |
| 2650 | event_name = p; |
| 2651 | p = vim_strchr(event_name, '#'); |
| 2652 | if (p != NULL) |
| 2653 | *p++ = NUL; // "Group#Event#pat" |
| 2654 | } |
| 2655 | |
| 2656 | pattern = p; // "pattern" is NULL when there is no pattern |
| 2657 | |
| 2658 | // find the index (enum) for the event name |
| 2659 | event = event_name2nr(event_name, &p); |
| 2660 | |
| 2661 | // return FALSE if the event name is not recognized |
| 2662 | if (event == NUM_EVENTS) |
| 2663 | goto theend; |
| 2664 | |
| 2665 | // Find the first autocommand for this event. |
| 2666 | // If there isn't any, return FALSE; |
| 2667 | // If there is one and no pattern given, return TRUE; |
| 2668 | ap = first_autopat[(int)event]; |
| 2669 | if (ap == NULL) |
| 2670 | goto theend; |
| 2671 | |
| 2672 | // if pattern is "<buffer>", special handling is needed which uses curbuf |
| 2673 | // for pattern "<buffer=N>, fnamecmp() will work fine |
| 2674 | if (pattern != NULL && STRICMP(pattern, "<buffer>") == 0) |
| 2675 | buflocal_buf = curbuf; |
| 2676 | |
| 2677 | // Check if there is an autocommand with the given pattern. |
| 2678 | for ( ; ap != NULL; ap = ap->next) |
| 2679 | // only use a pattern when it has not been removed and has commands. |
| 2680 | // For buffer-local autocommands, fnamecmp() works fine. |
| 2681 | if (ap->pat != NULL && ap->cmds != NULL |
| 2682 | && (group == AUGROUP_ALL || ap->group == group) |
| 2683 | && (pattern == NULL |
| 2684 | || (buflocal_buf == NULL |
| 2685 | ? fnamecmp(ap->pat, pattern) == 0 |
| 2686 | : ap->buflocal_nr == buflocal_buf->b_fnum))) |
| 2687 | { |
| 2688 | retval = TRUE; |
| 2689 | break; |
| 2690 | } |
| 2691 | |
| 2692 | theend: |
| 2693 | vim_free(arg_save); |
| 2694 | return retval; |
| 2695 | } |
| 2696 | #endif |