diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/news.txt | 3 | ||||
-rw-r--r-- | runtime/doc/options.txt | 1 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 1 | ||||
-rw-r--r-- | runtime/lua/vim/_meta/options.lua | 1 |
4 files changed, 4 insertions, 2 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt index 240eb152d7..5e257372bc 100644 --- a/runtime/doc/news.txt +++ b/runtime/doc/news.txt @@ -247,6 +247,9 @@ The following deprecated functions or APIs were removed. • Support for legacy treesitter injection queries is removed. +• 'shortmess' flags: + - |shm-f| is removed. Always uses "(3 of 5)", never "(file 3 of 5)" + ============================================================================== DEPRECATIONS *news-deprecations* diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index deb64bf18d..9b4f36cbce 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -5391,7 +5391,6 @@ A jump table for the options with a short description can be found at |Q_op|. messages, for example with CTRL-G, and to avoid some other messages. It is a list of flags: flag meaning when present ~ - f use "(3 of 5)" instead of "(file 3 of 5)" *shm-f* i use "[noeol]" instead of "[Incomplete last line]" *shm-i* l use "999L, 888B" instead of "999 lines, 888 bytes" *shm-l* m use "[+]" instead of "[Modified]" *shm-m* diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index ab5e795c16..8a6e5461c3 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -727,6 +727,7 @@ Options: Everything is allowed in 'exrc' files since they must be explicitly marked trusted. *'shelltype'* + 'shortmess' *shm-f* flag (always on, never show "file" in "(3 of 5)") *'shortname'* *'sn'* *'noshortname'* *'nosn'* *'swapsync'* *'sws'* *'termencoding'* *'tenc'* (Vim 7.4.852 also removed this for Windows) diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua index b8bdfbc3f7..baf53c5ccc 100644 --- a/runtime/lua/vim/_meta/options.lua +++ b/runtime/lua/vim/_meta/options.lua @@ -5668,7 +5668,6 @@ vim.bo.sw = vim.bo.shiftwidth --- messages, for example with CTRL-G, and to avoid some other messages. --- It is a list of flags: --- flag meaning when present ~ ---- f use "(3 of 5)" instead of "(file 3 of 5)" *shm-f* --- i use "[noeol]" instead of "[Incomplete last line]" *shm-i* --- l use "999L, 888B" instead of "999 lines, 888 bytes" *shm-l* --- m use "[+]" instead of "[Modified]" *shm-m* |