commit aa62579a684277d86b1f4a7588464e0ec4227b94
parent 85ddd0074b71d006746cb298e73e6ba2f5a52541
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sun, 15 Oct 2023 09:05:27 +0800
docs: restore accidentally removed line in :h 'ignorecase' (#25651)
Diffstat:
3 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
@@ -3257,6 +3257,7 @@ A jump table for the options with a short description can be found at |Q_op|.
global
Ignore case in search patterns, |cmdline-completion|, when
searching in the tags file, and |expr-==|.
+ Also see 'smartcase' and 'tagcase'.
Can be overruled by using "\c" or "\C" in the pattern, see
|/ignorecase|.
diff --git a/runtime/lua/vim/_meta/options.lua b/runtime/lua/vim/_meta/options.lua
@@ -3089,6 +3089,7 @@ vim.go.iconstring = vim.o.iconstring
--- Ignore case in search patterns, `cmdline-completion`, when
--- searching in the tags file, and `expr-==`.
+--- Also see 'smartcase' and 'tagcase'.
--- Can be overruled by using "\c" or "\C" in the pattern, see
--- `/ignorecase`.
---
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
@@ -3972,6 +3972,7 @@ return {
desc = [=[
Ignore case in search patterns, |cmdline-completion|, when
searching in the tags file, and |expr-==|.
+ Also see 'smartcase' and 'tagcase'.
Can be overruled by using "\c" or "\C" in the pattern, see
|/ignorecase|.
]=],