vim-patch:224f8ca: runtime(doc): clarify 'fileignorecase' option setting (#35879)

fixes: vim/vim#18360

224f8ca769

Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
zeertzjq
2025-09-23 07:10:00 +08:00
committed by GitHub
parent f8bdb671be
commit 4b4d58a2f9
3 changed files with 21 additions and 3 deletions

View File

@@ -2501,7 +2501,13 @@ vim.o.ffs = vim.o.fileformats
vim.go.fileformats = vim.o.fileformats
vim.go.ffs = vim.go.fileformats
--- When set case is ignored when using file names and directories.
--- When set, case is ignored when using file and directory names.
---
--- This option is on by default on systems where the filesystem is
--- traditionally case-insensitive (for example MS-Windows and macOS).
--- However, Vim cannot determine at runtime whether a particular
--- filesystem is case-sensitive or case-insensitive.
---
--- See 'wildignorecase' for only ignoring case when doing completion.
---
--- @type boolean