neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 9a02906c44f3980e33e83171b30bc83abba8052c
parent baccb569dc8508af5bea521bd27800c478883b29
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Thu,  6 Mar 2025 19:40:47 +0800

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 <Konfekt@users.noreply.github.com>
Diffstat:
Mruntime/ftplugin/vim.vim | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/runtime/ftplugin/vim.vim b/runtime/ftplugin/vim.vim @@ -1,7 +1,7 @@ " Vim filetype plugin " Language: Vim " Maintainer: Doug Kearns <dougkearns@gmail.com> -" Last Change: 2025 Feb 25 +" Last Change: 2025 Mar 05 " Former Maintainer: Bram Moolenaar <Bram@vim.org> " Contributors: Riley Bruins <ribru17@gmail.com> ('commentstring'), " @Konfekt @@ -85,6 +85,8 @@ if !exists("*" .. expand("<SID>") .. "Help") return ':'.topic elseif pre =~# '\<v:$' return 'v:'.topic + elseif pre =~# '<$' + return '<'.topic.'>' elseif pre =~# '\\$' return '/\'.topic elseif topic ==# 'v' && post =~# ':\w\+'