diff options
author | Skoh <101289702+SkohTV@users.noreply.github.com> | 2025-03-31 15:14:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-31 06:14:45 -0700 |
commit | 4dabeff308222307ede8e74a2bd341713a7f7d81 (patch) | |
tree | c033d839e8ef54644ebc849bfc91ab39792fcb91 /runtime | |
parent | 2e5958186aa36e90199e36de5dd9831ec6aefba3 (diff) | |
download | rneovim-4dabeff308222307ede8e74a2bd341713a7f7d81.tar.gz rneovim-4dabeff308222307ede8e74a2bd341713a7f7d81.tar.bz2 rneovim-4dabeff308222307ede8e74a2bd341713a7f7d81.zip |
feat(editor): 'autowriteall' on SIGHUP/SIGQUIT #32843
Problem:
Upon receiving a deadly signal, Nvim doesn't write buffers even if
the option 'autowriteall' is set.
Solution:
Write to all writable buffers upon SIGHUP or SIGQUIT (but not
SIGTERM), if the option 'autowriteall' is set.
Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/news.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index 2644bb24b2..c8fa343e46 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -134,6 +134,7 @@ OPTIONS • 'completefuzzycollect' enables fuzzy collection of candidates for (some) |ins-completion| modes. +• 'autowriteall' write all buffers upon receiving `SIGHUP`, `SIGQUIT` or `SIGTSTP`. PERFORMANCE |