vimwiki

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

commit 2cff9776e87983b4866cc323e89ca6c6773a6079
parent 65c3d48227b09a6ba55b73e0cb0c577d33415a62
Author: Tinmarino <tinmarino@gmail.com>
Date:   Wed, 14 Jun 2023 11:34:57 -0400

Feature: Recognize message:// URLs on Mac #1332

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 @@ -177,7 +177,7 @@ function! s:get_default_global() abort \ [ \ 'http', 'https', 'file', 'ftp', 'gopher', 'telnet', 'nntp', 'ldap', \ 'rsync', 'imap', 'pop', 'irc', 'ircs', 'cvs', 'svn', 'svn+ssh', - \ 'git', 'ssh', 'fish', 'sftp', 'thunderlink' + \ 'git', 'ssh', 'fish', 'sftp', 'thunderlink', 'message' \ ]}, \ '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},