aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-10-03 06:58:31 +0800
committerGitHub <noreply@github.com>2024-10-03 06:58:31 +0800
commitaeea63081c8095f4a40a2c0ef6f4038c065d4714 (patch)
treedcfb11ccfe1f63daa66e3c4e44d29e9cf95392ed /src/nvim/options.lua
parent6a2f8958e832aebc20cf42d8ade4cb58fe33df9e (diff)
downloadrneovim-aeea63081c8095f4a40a2c0ef6f4038c065d4714.tar.gz
rneovim-aeea63081c8095f4a40a2c0ef6f4038c065d4714.tar.bz2
rneovim-aeea63081c8095f4a40a2c0ef6f4038c065d4714.zip
vim-patch:ae62fe5: runtime(doc): 'filetype', 'syntax' and 'keymap' only allow alphanumeric + some characters (#30630)
closes: vim/vim#15783 https://github.com/vim/vim/commit/ae62fe5c289e148b92b1d0bb912dcce7ebe14602 Co-authored-by: Milly <milly.ca@gmail.com>
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 0da954d052..61dc1a8daa 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -2832,14 +2832,14 @@ return {
/* vim: set filetype=idl : */
< |FileType| |filetypes|
When a dot appears in the value then this separates two filetype
- names. Example: >c
+ names, it should therefore not be used for a filetype. Example: >c
/* vim: set filetype=c.doxygen : */
< This will use the "c" filetype first, then the "doxygen" filetype.
This works both for filetype plugins and for syntax files. More than
one dot may appear.
This option is not copied to another buffer, independent of the 's' or
'S' flag in 'cpoptions'.
- Only normal file name characters can be used, `/\*?[|<>` are illegal.
+ Only alphanumeric characters, '-' and '_' can be used.
]=],
full_name = 'filetype',
noglob = true,
@@ -4571,7 +4571,7 @@ return {
Setting this option to a valid keymap name has the side effect of
setting 'iminsert' to one, so that the keymap becomes effective.
'imsearch' is also set to one, unless it was -1
- Only normal file name characters can be used, `/\*?[|<>` are illegal.
+ Only alphanumeric characters, '.', '-' and '_' can be used.
]=],
full_name = 'keymap',
normal_fname_chars = true,
@@ -8542,7 +8542,7 @@ return {
Syntax autocommand event is triggered with the value as argument.
This option is not copied to another buffer, independent of the 's' or
'S' flag in 'cpoptions'.
- Only normal file name characters can be used, `/\*?[|<>` are illegal.
+ Only alphanumeric characters, '.', '-' and '_' can be used.
]=],
full_name = 'syntax',
noglob = true,