summaryrefslogtreecommitdiffstats
path: root/runtime/doc/autocmd.txt
AgeCommit message (Collapse)Author
2024-05-05runtime(doc): Fix typos in help documentsh-east
closes: #14720 Co-authored-by: Christian Clason <c.clason@uni-graz.at> Signed-off-by: h-east <h.east.727@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-26patch 9.1.0207: No autocommand when writing session filev9.1.0207Colin Kennedy
Problem: No autocommand when writing session file Solution: Add SessionWritePost autocommand (Colin Kennedy) fixes: ##14242 closes: #14288 Co-authored-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Colin Kennedy <colinvfx@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-25patch 9.1.0059: No event triggered before creating a windowv9.1.0059Sergey Vlasov
Problem: No event is triggered before creating a window. (Sergey Vlasov) Solution: Add the WinNewPre event (Sergey Vlasov) fixes: #10635 closes: #12761 Signed-off-by: Sergey Vlasov <sergey@vlasov.me> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-23runtime(doc): change "VIsual mode" to "Visual mode" in :h SafeState (#13901)zeertzjq
"Visual mode" is used everywhere else in the help when not referring to something in the source code. Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-14patch 9.1.0029: Cannot act on various terminal response codesv9.1.0029Danek Duvall
Problem: Cannot act on various terminal response codes Solution: Add the TerminalResponseAll autocommand (Danek Duvall) closes: #13829 Signed-off-by: Danek Duvall <duvall@comfychair.org> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-02patch 9.1.0000: Vim 9.1 releasev9.1.0000v9.1.0Christian Brabandt
Problem: Need a new release Solution: Release Vim 9.1 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-06-10Update runtime filesBram Moolenaar
2023-02-20Update runtime files.Bram Moolenaar
2022-12-31Update runtime filesBram Moolenaar
2022-11-23Update runtime filesBram Moolenaar
2022-11-22patch 9.0.0917: the WinScrolled autocommand event is not enoughv9.0.0917Bram Moolenaar
Problem: The WinScrolled autocommand event is not enough. Solution: Add WinResized and provide information about what changed. (closes #11576)
2022-11-19patch 9.0.0913: only change in current window triggers the WinScrolled eventv9.0.0913Bram Moolenaar
Problem: Only a change in the current window triggers the WinScrolled event. Solution: Trigger WinScrolled if any window scrolled or changed size. (issue #11576)
2022-10-15patch 9.0.0756: no autocmd event for changing text in a terminal windowv9.0.0756Shougo Matsushita
Problem: No autocmd event for changing text in a terminal window. Solution: Add TextChangedT. (Shougo Matsushita, closes #11366)
2022-09-04Update runtime filesBram Moolenaar
2022-07-25Update runtime filesBram Moolenaar
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-03Update runtime filesBram Moolenaar
2022-05-24patch 8.2.5011: Replacing an autocommand requires several linesv8.2.5011Yegappan Lakshmanan
Problem: Replacing an autocommand requires several lines. Solution: Add the "replace" flag to autocmd_add(). (Yegappan Lakshmanan, closes #10473)
2022-05-19patch 8.2.4981: it is not possible to manipulate autocommandsv8.2.4981Yegappan Lakshmanan
Problem: It is not possible to manipulate autocommands. Solution: Add functions to add, get and set autocommands. (Yegappan Lakshmanan, closes #10291)
2022-04-18Update runtime filesBram Moolenaar
2022-04-09patch 8.2.4717: for TextYankPost v:event does not contain all informationv8.2.4717Bram Moolenaar
Problem: For TextYankPost v:event does not contain information about the operation being inclusive or not. Solution: Add "inclusive" to v:event. (Justn M. Keyes, Yegappan Lakshmanan, closes #10125)
2022-04-08Update runtime filesBram Moolenaar
2022-04-08patch 8.2.4713: plugins cannot track text scrollingv8.2.4713LemonBoy
Problem: Plugins cannot track text scrolling. Solution: Add the WinScrolled event. (closes #10102)
2022-03-30Update runtime filesBram Moolenaar
2022-03-08Update runtime filesBram Moolenaar
2022-02-26Update runtime files.Bram Moolenaar
2022-02-09Update runtime filesBram Moolenaar
2022-02-09patch 8.2.4335: no autocommand event triggered before changing directoryv8.2.4335Bram Moolenaar
Problem: No autocommand event triggered before changing directory. (Ronnie Magatti) Solution: Add DirChangedPre. (closes #9721)
2022-01-23Update runtime filesBram Moolenaar
2022-01-16Update runtime filesBram Moolenaar
2021-12-29patch 8.2.3941: SIGTSTP is not handledv8.2.3941dbivolaru
Problem: SIGTSTP is not handled. Solution: Handle SIGTSTP like pressing CTRL-Z. (closes #9422)
2021-11-21Update runtime filesBram Moolenaar
2021-11-13patch 8.2.3591: no event is triggered when closing a windowv8.2.3591naohiro ono
Problem: No event is triggered when closing a window. Solution: Add the WinClosed event. (Naohiro Ono, closes #9110)
2021-10-22patch 8.2.3555: ModeChanged is not triggered on every mode changev8.2.3555=?UTF-8?q?Magnus=20Gro=C3=9F?=
Problem: ModeChanged is not triggered on every mode change. Solution: Also trigger on minor mode changes. (Maguns Gross, closes #8999)
2021-10-16Update runtime filesBram Moolenaar
2021-10-04Update runtime filesBram Moolenaar
2021-09-12patch 8.2.3430: no generic way to trigger an autocommand on mode changev8.2.3430=?UTF-8?q?Magnus=20Gro=C3=9F?=
Problem: No generic way to trigger an autocommand on mode change. Solution: Add the ModeChanged autocommand event. (Magnus Gross, closes #8856)
2021-08-14Update runtime filesBram Moolenaar
2021-08-01patch 8.2.3268: cannot use a block with :autocmd like with :commandv8.2.3268Bram Moolenaar
Problem: Cannot use a block with :autocmd like with :command. Solution: Add support for a {} block after :autocmd. (closes #8620)
2021-07-28Update runtime filesBram Moolenaar
2021-07-07Update runtime filesBram Moolenaar
2021-06-13Update runtime filesBram Moolenaar
2021-05-30Update runtime filesBram Moolenaar
2021-05-02Update runtime filesBram Moolenaar
2021-03-31Update runtime files.Bram Moolenaar
2021-01-31patch 8.2.2440: documentation based on patches is outdatedv8.2.2440Bram Moolenaar
Problem: Documentation based on patches is outdated. Solution: Add changes to documentation in a patch.
2020-12-23Update runtime files.Bram Moolenaar
2020-12-11patch 8.2.2128: there is no way to do something on CTRL-Zv8.2.2128Bram Moolenaar
Problem: There is no way to do something on CTRL-Z. Solution: Add VimSuspend and VimResume autocommand events. (closes #7450)
2020-12-10Update runtime files.Bram Moolenaar
2020-11-30patch 8.2.2070: can't get the exit value in VimLeave(Pre) autocommandsv8.2.2070Bram Moolenaar
Problem: Can't get the exit value in VimLeave or VimLeavePre autocommands. Solution: Add v:exiting like in Neovim. (Yegappan Lakshmanan, closes #7395)