From 9a02906c44f3980e33e83171b30bc83abba8052c Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Thu, 6 Mar 2025 19:40:47 +0800 Subject: vim-patch:08a410f: runtime(vim): recognize <...> strings (and keys) for 'keywordprg' (#32752) see :help E499 and :h key-notation closes: vim/vim#16795 https://github.com/vim/vim/commit/08a410f674a340f137623526bf8159d5a476f729 Co-authored-by: Konfekt --- runtime/ftplugin/vim.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/ftplugin/vim.vim b/runtime/ftplugin/vim.vim index 16730185c7..4772683ee8 100644 --- a/runtime/ftplugin/vim.vim +++ b/runtime/ftplugin/vim.vim @@ -1,7 +1,7 @@ " Vim filetype plugin " Language: Vim " Maintainer: Doug Kearns -" Last Change: 2025 Feb 25 +" Last Change: 2025 Mar 05 " Former Maintainer: Bram Moolenaar " Contributors: Riley Bruins ('commentstring'), " @Konfekt @@ -85,6 +85,8 @@ if !exists("*" .. expand("") .. "Help") return ':'.topic elseif pre =~# '\' elseif pre =~# '\\$' return '/\'.topic elseif topic ==# 'v' && post =~# ':\w\+' -- cgit