mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
docs: vimdoc parsing errors #36681
Error: .tests/neovim/runtime/doc/dev_test.txt
(MISSING "`" [420, 79] - [420, 79])
Error: .tests/neovim/runtime/doc/news.txt
(MISSING "`" [137, 80] - [137, 80])
Error: .tests/neovim/runtime/doc/nvim.txt
(MISSING "<" [106, 0] - [106, 0])
Error: .tests/neovim/runtime/doc/vimfn.txt
(MISSING "}" [2610, 26] - [2610, 26])
This commit is contained in:
13
runtime/lua/vim/_meta/vimfn.lua
generated
13
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -2328,12 +2328,13 @@ function vim.fn.fmod(expr1, expr2) end
|
||||
|
||||
--- Escape {string} for use as file name command argument. All
|
||||
--- characters that have a special meaning, such as `'%'` and `'|'`
|
||||
--- are escaped with a backslash.
|
||||
--- For most systems the characters escaped are
|
||||
--- " \t\n*?[{`$\\%#'\"|!<". For systems where a backslash
|
||||
--- appears in a filename, it depends on the value of 'isfname'.
|
||||
--- A leading '+' and '>' is also escaped (special after |:edit|
|
||||
--- and |:write|). And a "-" by itself (special after |:cd|).
|
||||
--- are escaped with a backslash. For most systems the characters
|
||||
--- escaped are: >
|
||||
--- \t\n *?[{`$\\%#'\"|!<
|
||||
--- <For systems where a backslash appears in a filename, it
|
||||
--- depends on the value of 'isfname'. A leading '+' and '>' is
|
||||
--- also escaped (special after |:edit| and |:write|). And a "-"
|
||||
--- by itself (special after |:cd|).
|
||||
--- Returns an empty string on error.
|
||||
--- Example: >vim
|
||||
--- let fname = '+some str%nge|name'
|
||||
|
||||
Reference in New Issue
Block a user