From 72792615e739d0eb54a9c8f7e0a46a6e2407c9e8 Mon Sep 17 00:00:00 2001 From: Matthieu Talbot Date: Tue, 23 Apr 2024 21:38:51 +0200 Subject: [PATCH] Update vimwiki.txt Fix parameter that was renamed in some example. --- doc/vimwiki.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/vimwiki.txt b/doc/vimwiki.txt index b7f6d93..2a5c29a 100644 --- a/doc/vimwiki.txt +++ b/doc/vimwiki.txt @@ -3282,7 +3282,7 @@ cannot otherwise convert the link. A customized handler might look like this: > let str = a:value " complete URL - let url_0 = matchstr(str, g:vimwiki_rxWikiInclMatchUrl) + let url_0 = matchstr(str, g:vimwiki_global_vars.rxWikiInclMatchUrl) " URL parts let link_infos = vimwiki#base#resolve_link(url_0) let arg1 = matchstr(str, VimwikiWikiInclMatchArg(1))