comparison src/vim.h @ 27617:269f89efb06a v8.2.4335

patch 8.2.4335: no autocommand event triggered before changing directory Commit: https://github.com/vim/vim/commit/28e8f73ae2d90009fd62cd60f97c2643ba44de68 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 9 12:58:20 2022 +0000 patch 8.2.4335: no autocommand event triggered before changing directory Problem: No autocommand event triggered before changing directory. (Ronnie Magatti) Solution: Add DirChangedPre. (closes #9721)
author Bram Moolenaar <Bram@vim.org>
date Wed, 09 Feb 2022 14:00:05 +0100
parents 4eb2bf8b2f27
children 517daf1a6e5b
comparison
equal deleted inserted replaced
27616:431c6a7a1f8b 27617:269f89efb06a
1302 EVENT_CURSORHOLDI, // idem, in Insert mode 1302 EVENT_CURSORHOLDI, // idem, in Insert mode
1303 EVENT_CURSORMOVED, // cursor was moved 1303 EVENT_CURSORMOVED, // cursor was moved
1304 EVENT_CURSORMOVEDI, // cursor was moved in Insert mode 1304 EVENT_CURSORMOVEDI, // cursor was moved in Insert mode
1305 EVENT_DIFFUPDATED, // after diffs were updated 1305 EVENT_DIFFUPDATED, // after diffs were updated
1306 EVENT_DIRCHANGED, // after user changed directory 1306 EVENT_DIRCHANGED, // after user changed directory
1307 EVENT_DIRCHANGEDPRE, // before directory changes
1307 EVENT_ENCODINGCHANGED, // after changing the 'encoding' option 1308 EVENT_ENCODINGCHANGED, // after changing the 'encoding' option
1308 EVENT_EXITPRE, // before exiting 1309 EVENT_EXITPRE, // before exiting
1309 EVENT_FILEAPPENDCMD, // append to a file using command 1310 EVENT_FILEAPPENDCMD, // append to a file using command
1310 EVENT_FILEAPPENDPOST, // after appending to a file 1311 EVENT_FILEAPPENDPOST, // after appending to a file
1311 EVENT_FILEAPPENDPRE, // before appending to a file 1312 EVENT_FILEAPPENDPRE, // before appending to a file