mirror of
https://github.com/neovim/neovim.git
synced 2025-11-15 14:59:20 +00:00
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:
@@ -2791,7 +2791,13 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
'fileignorecase' 'fic' boolean (default on for systems where case in file
|
'fileignorecase' 'fic' boolean (default on for systems where case in file
|
||||||
names is normally ignored)
|
names is normally ignored)
|
||||||
global
|
global
|
||||||
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.
|
See 'wildignorecase' for only ignoring case when doing completion.
|
||||||
|
|
||||||
*'filetype'* *'ft'*
|
*'filetype'* *'ft'*
|
||||||
|
|||||||
8
runtime/lua/vim/_meta/options.lua
generated
8
runtime/lua/vim/_meta/options.lua
generated
@@ -2501,7 +2501,13 @@ vim.o.ffs = vim.o.fileformats
|
|||||||
vim.go.fileformats = vim.o.fileformats
|
vim.go.fileformats = vim.o.fileformats
|
||||||
vim.go.ffs = vim.go.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.
|
--- See 'wildignorecase' for only ignoring case when doing completion.
|
||||||
---
|
---
|
||||||
--- @type boolean
|
--- @type boolean
|
||||||
|
|||||||
@@ -3173,7 +3173,13 @@ local options = {
|
|||||||
names is normally ignored]],
|
names is normally ignored]],
|
||||||
},
|
},
|
||||||
desc = [=[
|
desc = [=[
|
||||||
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.
|
See 'wildignorecase' for only ignoring case when doing completion.
|
||||||
]=],
|
]=],
|
||||||
full_name = 'fileignorecase',
|
full_name = 'fileignorecase',
|
||||||
|
|||||||
Reference in New Issue
Block a user