diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-06-02 06:06:12 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-02 06:06:12 +0800 |
| commit | 7a8f42dc036f3bc6e8b106c580e0cd50dbed465e (patch) | |
| tree | 31ac41e7e5c9b188324734a337c8e0d5e604e095 /src | |
| parent | bb6190bec5f18c1f9e2c1d29ef1f7cf7912ea625 (diff) | |
| download | rneovim-7a8f42dc036f3bc6e8b106c580e0cd50dbed465e.tar.gz rneovim-7a8f42dc036f3bc6e8b106c580e0cd50dbed465e.tar.bz2 rneovim-7a8f42dc036f3bc6e8b106c580e0cd50dbed465e.zip | |
vim-patch:e299591: runtime(doc): clarify 'shortmess' flag "S" (#29131)
fixes: vim/vim#14893
https://github.com/vim/vim/commit/e299591498a20c5c587364e4df57f947dfc02897
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/nvim/options.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 452cc6876b..0f3cf6c5b4 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -7317,8 +7317,8 @@ return { message; also for quickfix message (e.g., ":cn") s don't give "search hit BOTTOM, continuing at TOP" or *shm-s* "search hit TOP, continuing at BOTTOM" messages; when using - the search count do not show "W" after the count message (see - S below) + the search count do not show "W" before the count message + (see |shm-S| below) t truncate file message at the start if it is too long *shm-t* to fit on the command-line, "<" will appear in the left most column; ignored in Ex mode @@ -7340,7 +7340,11 @@ return { `:silent` was used for the command; note that this also affects messages from 'autoread' reloading S do not show search count message when searching, e.g. *shm-S* - "[1/5]" + "[1/5]". When the "S" flag is not present (e.g. search count + is shown), the "search hit BOTTOM, continuing at TOP" and + "search hit TOP, continuing at BOTTOM" messages are only + indicated by a "W" (Mnemonic: Wrapped) letter before the + search count statistics. This gives you the opportunity to avoid that a change between buffers requires you to hit <Enter>, but still gives as useful a message as |