From c93091395b23c4d558e307e913ad46e89f1ad3ae Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 23 Jul 2025 06:22:34 +0800 Subject: [PATCH 1/3] vim-patch:61cec2e: runtime(doc): Fix typo in :help help-summary fixes: vim/vim#17816 closes: vim/vim#17823 https://github.com/vim/vim/commit/61cec2e761d630c8ee4be09c8e0096a98088a47a Co-authored-by: Doug Kearns Co-authored-by: Alain Mosnier --- runtime/doc/usr_02.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/doc/usr_02.txt b/runtime/doc/usr_02.txt index 23a43d6bb1..68cc22a868 100644 --- a/runtime/doc/usr_02.txt +++ b/runtime/doc/usr_02.txt @@ -590,7 +590,7 @@ Summary: *help-summary* > < for how the '|' is handled in mappings. 15) Command definitions are talked about :h command-topic, so use > - :help command-bar + :help command-bang < to find out about the '!' argument for custom commands. 16) Window management commands always start with CTRL-W, so you find the From d6704148bc9c51da429b0385cc13761084dc3215 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 23 Jul 2025 06:22:50 +0800 Subject: [PATCH 2/3] vim-patch:5711d76: runtime(doc): Tweak documentation style closes: vim/vim#17824 https://github.com/vim/vim/commit/5711d768181c3b08869ac41ee947a56a26763450 Co-authored-by: Hirohito Higashi --- runtime/doc/vimeval.txt | 2 +- runtime/doc/vimfn.txt | 2 +- runtime/lua/vim/_meta/vimfn.lua | 2 +- src/nvim/eval.lua | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/doc/vimeval.txt b/runtime/doc/vimeval.txt index 8fc5434180..1815e439fd 100644 --- a/runtime/doc/vimeval.txt +++ b/runtime/doc/vimeval.txt @@ -2099,7 +2099,7 @@ text... CODE < *E121* -:let {var-name} .. List the value of variable {var-name}. Multiple +:let {var-name} ... List the value of variable {var-name}. Multiple variable names may be given. Special names recognized here: *E738* g: global variables diff --git a/runtime/doc/vimfn.txt b/runtime/doc/vimfn.txt index 34903d7f70..6752a70628 100644 --- a/runtime/doc/vimfn.txt +++ b/runtime/doc/vimfn.txt @@ -11890,7 +11890,7 @@ wildtrigger() *wildtrigger()* produce a beep when no matches are found and generally operates more quietly. This makes it suitable for triggering completion automatically, such as from an |:autocmd|. - *cmdline-autocompletion* + *cmdline-autocompletion* Example: To make the completion menu pop up automatically as you type on the command line, use: >vim autocmd CmdlineChanged [:/?] call wildtrigger() diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua index a8d986c48c..76bc5e8410 100644 --- a/runtime/lua/vim/_meta/vimfn.lua +++ b/runtime/lua/vim/_meta/vimfn.lua @@ -10824,7 +10824,7 @@ function vim.fn.wildmenumode() end --- produce a beep when no matches are found and generally --- operates more quietly. This makes it suitable for triggering --- completion automatically, such as from an |:autocmd|. ---- *cmdline-autocompletion* +--- *cmdline-autocompletion* --- Example: To make the completion menu pop up automatically as --- you type on the command line, use: >vim --- autocmd CmdlineChanged [:/?] call wildtrigger() diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index bc878e0a8f..8619f54935 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -13082,7 +13082,7 @@ M.funcs = { produce a beep when no matches are found and generally operates more quietly. This makes it suitable for triggering completion automatically, such as from an |:autocmd|. - *cmdline-autocompletion* + *cmdline-autocompletion* Example: To make the completion menu pop up automatically as you type on the command line, use: >vim autocmd CmdlineChanged [:/?] call wildtrigger() From e28aee0c7204d742b00148a1916727aeb3de529b Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Wed, 23 Jul 2025 06:23:58 +0800 Subject: [PATCH 3/3] vim-patch:774fe9d: runtime(doc): remove mention of ftp.vim.org fixes: vim/vim#17819 https://github.com/vim/vim/commit/774fe9d8fcdc299f55502e79d6986eb866ec5b26 Co-authored-by: Christian Brabandt --- runtime/doc/usr_23.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/doc/usr_23.txt b/runtime/doc/usr_23.txt index 2f88793db2..a7737c8e72 100644 --- a/runtime/doc/usr_23.txt +++ b/runtime/doc/usr_23.txt @@ -116,7 +116,7 @@ Someone sends you an e-mail message, which refers to a file by its URL. For example: You can find the information here: ~ - ftp://ftp.vim.org/pub/vim/README ~ + https://ftp.nluug.nl/pub/vim/README You could start a program to download the file, save it on your local disk and then start Vim to edit it.