aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-11-24 22:36:33 +0800
committerGitHub <noreply@github.com>2024-11-24 14:36:33 +0000
commit5c603064421b8829cf106c845902fcc41d3e31f2 (patch)
tree00c8d55c76c9ff447affb8d253ba6e6b9bd14d73 /src/nvim/options.lua
parentef4f13d85c2612f8dd920f4290f607ec6fdb89cc (diff)
downloadrneovim-5c603064421b8829cf106c845902fcc41d3e31f2.tar.gz
rneovim-5c603064421b8829cf106c845902fcc41d3e31f2.tar.bz2
rneovim-5c603064421b8829cf106c845902fcc41d3e31f2.zip
vim-patch:9.1.0883: message history cleanup is missing some tests (#31331)
Problem: message history cleanup is missing some tests Solution: Add tests, refactor common code into did_set_msghistory() (Shougo Matsushita) closes: vim/vim#16078 https://github.com/vim/vim/commit/9f860a14c308f7a9a27a6850d36790615717a710 Co-authored-by: Shougo Matsushita <Shougo.Matsu@gmail.com> Co-authored-by: Milly <milly.ca@gmail.com>
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 2d712ee101..bcb05b107b 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -5894,10 +5894,12 @@ return {
},
{
abbreviation = 'mhi',
+ cb = 'did_set_msghistory',
defaults = { if_true = 500 },
desc = [=[
Determines how many entries are remembered in the |:messages| history.
The maximum value is 10000.
+ Setting it to zero clears the message history.
]=],
full_name = 'msghistory',
scope = { 'global' },