mirror of
https://github.com/neovim/neovim
synced 2025-07-15 08:41:47 +00:00
Merge pull request #34193 from zeertzjq/vim-a6172f8
vim-patch: Correct allowed characters at :help 'filetype'
This commit is contained in:
@ -2621,7 +2621,8 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
one dot may appear.
|
||||
This option is not copied to another buffer, independent of the 's' or
|
||||
'S' flag in 'cpoptions'.
|
||||
Only alphanumeric characters, '-' and '_' can be used.
|
||||
Only alphanumeric characters, '-' and '_' can be used (and a '.' is
|
||||
allowed as delimiter when combining different filetypes).
|
||||
|
||||
*'fillchars'* *'fcs'*
|
||||
'fillchars' 'fcs' string (default "")
|
||||
|
3
runtime/lua/vim/_meta/options.lua
generated
3
runtime/lua/vim/_meta/options.lua
generated
@ -2313,7 +2313,8 @@ vim.go.fic = vim.go.fileignorecase
|
||||
--- one dot may appear.
|
||||
--- This option is not copied to another buffer, independent of the 's' or
|
||||
--- 'S' flag in 'cpoptions'.
|
||||
--- Only alphanumeric characters, '-' and '_' can be used.
|
||||
--- Only alphanumeric characters, '-' and '_' can be used (and a '.' is
|
||||
--- allowed as delimiter when combining different filetypes).
|
||||
---
|
||||
--- @type string
|
||||
vim.o.filetype = ""
|
||||
|
@ -3030,7 +3030,8 @@ local options = {
|
||||
one dot may appear.
|
||||
This option is not copied to another buffer, independent of the 's' or
|
||||
'S' flag in 'cpoptions'.
|
||||
Only alphanumeric characters, '-' and '_' can be used.
|
||||
Only alphanumeric characters, '-' and '_' can be used (and a '.' is
|
||||
allowed as delimiter when combining different filetypes).
|
||||
]=],
|
||||
full_name = 'filetype',
|
||||
noglob = true,
|
||||
|
Reference in New Issue
Block a user