vimwiki

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

commit b90fbc70d977acf5b8c4350b3b43d55fbeb50668
parent 6766c37ce09a623b3de7ddb86ca30278eea37a82
Author: Rane Brown <rane.brown@gmail.com>
Date:   Thu, 21 Mar 2019 22:23:33 -0600

Fix missing 'T' in syntax definition of VimwikiDelTextT

The missing 'T' character was causing strikethrough ~ characters to be
hidden within tables which is not the desired behavior. Closes #404.

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

diff --git a/syntax/vimwiki.vim b/syntax/vimwiki.vim @@ -297,7 +297,7 @@ execute 'syntax match VimwikiItalicBoldT /'.vimwiki#vars#get_syntaxlocal('rxItal execute 'syntax match VimwikiDelText /'.vimwiki#vars#get_syntaxlocal('rxDelText'). \ '/ contains=VimwikiDelTextChar,@Spell' execute 'syntax match VimwikiDelTextT /'.vimwiki#vars#get_syntaxlocal('rxDelText'). - \ '/ contained contains=VimwikiDelTextChar,@Spell' + \ '/ contained contains=VimwikiDelTextCharT,@Spell' execute 'syntax match VimwikiSuperScript /'.vimwiki#vars#get_syntaxlocal('rxSuperScript'). \ '/ contains=VimwikiSuperScriptChar,@Spell'