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. --- runtime/doc/options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/doc') diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index b26c181f28..5e91bd8666 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -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. -- cgit From fdcb74fc4ba2159d5425849560dda97224f5bff4 Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Sun, 24 Sep 2023 19:38:37 -0500 Subject: docs: remove more references to shm-f --- runtime/doc/editing.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'runtime/doc') diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt index 2225e6e753..363d8a5568 100644 --- a/runtime/doc/editing.txt +++ b/runtime/doc/editing.txt @@ -820,12 +820,10 @@ by the shell before executing the find program. When there is an argument list you can see which file you are editing in the title of the window (if there is one and 'title' is on) and with the file message you get with the "CTRL-G" command. You will see something like - (file 4 of 11) -If 'shortmess' contains 'f' it will be (4 of 11) If you are not really editing the file at the current position in the argument list it will be - (file (4) of 11) + ((4) of 11) This means that you are position 4 in the argument list, but not editing the fourth file in the argument list. This happens when you do ":e file". -- cgit