From 6fb1e0d499b33534152f09744f967f355a9e2a24 Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Sun, 24 Sep 2023 09:09:18 -0500 Subject: docs: remove "f" from default 'shortmess' value The "f" flag was removed in f7da4722570617bd8927e7aa533fa9a608c45bba. The value of the "f" flag is no longer listed in the 'shortmess' description and it cannot be disabled, so having it in the default value is pointless and confusing. --- src/nvim/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 258145e85e..f0e4a5a1f4 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -7239,7 +7239,7 @@ return { { abbreviation = 'shm', cb = 'did_set_shortmess', - defaults = { if_true = 'filnxtToOCF' }, + defaults = { if_true = 'ilnxtToOCF' }, desc = [=[ This option helps to avoid all the |hit-enter| prompts caused by file messages, for example with CTRL-G, and to avoid some other messages. -- cgit