diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-05 07:55:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-05 07:55:45 +0800 |
commit | 1f252a8ac0d1ca23777978fcef07bd7fab309494 (patch) | |
tree | 7754f8b21f434dc8e32cf1635d3df8d9240afed0 /src/nvim/options.lua | |
parent | 6fa17da39b270bf230764859a9537124b18d3ed5 (diff) | |
download | rneovim-1f252a8ac0d1ca23777978fcef07bd7fab309494.tar.gz rneovim-1f252a8ac0d1ca23777978fcef07bd7fab309494.tar.bz2 rneovim-1f252a8ac0d1ca23777978fcef07bd7fab309494.zip |
docs(options): fix mistakes (#24568)
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index dde216463b..ec6481c520 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -547,7 +547,7 @@ return { if_true = '', doc = [["$TMPDIR/*,$TMP/*,$TEMP/*" Unix: "/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*" - Mac: "/private/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*")]], + Mac: "/private/tmp/*,$TMPDIR/*,$TMP/*,$TEMP/*"]], meta = '/tmp/*', }, deny_duplicates = true, @@ -3726,8 +3726,7 @@ return { defaults = { if_true = macros('DFLT_HELPFILE'), doc = [[(MS-Windows) "$VIMRUNTIME\doc\help.txt" - (others) "$VIMRUNTIME/doc/help.txt") - ]], + (others) "$VIMRUNTIME/doc/help.txt"]], }, desc = [=[ Name of the main help file. All distributed help files should be @@ -4270,8 +4269,7 @@ return { if_true = '@,48-57,/,\\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=', doc = [[for Windows: "@,48-57,/,\,.,-,_,+,,,#,$,%,{,},[,],:,@-@,!,~,=" - otherwise: "@,48-57,/,.,-,_,+,,,#,$,%,~,=") - ]], + otherwise: "@,48-57,/,.,-,_,+,,,#,$,%,~,="]], }, deny_duplicates = true, desc = [=[ @@ -4337,8 +4335,7 @@ return { if_true = '@,48-57,_,128-167,224-235', doc = [[for Windows: "@,48-57,_,128-167,224-235" - otherwise: "@,48-57,_,192-255") - ]], + otherwise: "@,48-57,_,192-255"]], }, deny_duplicates = true, desc = [=[ @@ -9031,6 +9028,7 @@ return { scope = { 'global' }, secure = true, short_desc = N_('where to store undo files'), + tags = { 'E5003' }, type = 'string', varname = 'p_udir', }, |