From 84e9422c7c6a6edb82829c5b7c739a9398f717fd Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Thu, 13 May 2021 14:24:33 +0200 Subject: [PATCH] Add matrix as known URI scheme It has meanwhile been accepted into the HTML standard: https://github.com/whatwg/html/pull/6320 --- autoload/vimwiki/vars.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vimwiki/vars.vim b/autoload/vimwiki/vars.vim index d076277..dd2eb66 100644 --- a/autoload/vimwiki/vars.vim +++ b/autoload/vimwiki/vars.vim @@ -178,7 +178,7 @@ function! s:get_default_global() abort \ 'rsync', 'imap', 'pop', 'irc', 'ircs', 'cvs', 'svn', 'svn+ssh', \ 'git', 'ssh', 'fish', 'sftp', \ ]}, - \ 'schemes_any': {'type': type([]), 'default': ['mailto', 'news', 'xmpp', 'sip', 'sips', 'doi', 'urn', 'tel', 'data']}, + \ 'schemes_any': {'type': type([]), 'default': ['mailto', 'matrix', 'news', 'xmpp', 'sip', 'sips', 'doi', 'urn', 'tel', 'data']}, \ 'table_auto_fmt': {'type': type(0), 'default': 1, 'min': 0, 'max': 1}, \ 'table_reduce_last_col': {'type': type(0), 'default': 0, 'min': 0, 'max': 1}, \ 'table_mappings': {'type': type(0), 'default': 1, 'min': 0, 'max': 1},