docs: remove "f" from default 'shortmess' value

The "f" flag was removed in f7da472257.
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.
This commit is contained in:
Gregory Anders 2023-09-24 09:09:18 -05:00
parent 61ecb3e16c
commit 6fb1e0d499
3 changed files with 3 additions and 3 deletions

View File

@ -5383,7 +5383,7 @@ A jump table for the options with a short description can be found at |Q_op|.
function to get the effective shiftwidth value.
*'shortmess'* *'shm'* *E1336*
'shortmess' 'shm' string (default "filnxtToOCF")
'shortmess' 'shm' string (default "ilnxtToOCF")
global
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.

View File

@ -5719,7 +5719,7 @@ vim.bo.sw = vim.bo.shiftwidth
--- shm=at Abbreviation, and truncate message when necessary.
---
--- @type string
vim.o.shortmess = "filnxtToOCF"
vim.o.shortmess = "ilnxtToOCF"
vim.o.shm = vim.o.shortmess
vim.go.shortmess = vim.o.shortmess
vim.go.shm = vim.go.shortmess

View File

@ -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.