vimwiki

Personal wiki for vim
git clone https://github.com/vimwiki/vimwiki.git
Log | Files | Refs | README | LICENSE

commit 84e9422c7c6a6edb82829c5b7c739a9398f717fd
parent f6c419fb879626a61f01272cd409e4f15a62cb56
Author: Reiner Herrmann <reiner@reiner-h.de>
Date:   Thu, 13 May 2021 14:24:33 +0200

Add matrix as known URI scheme

It has meanwhile been accepted into the HTML standard:
 https://github.com/whatwg/html/pull/6320

Diffstat:
Mautoload/vimwiki/vars.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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},