enable strikethrough for Neovim (#1054)
Neovim has a different method of marking applied patches, using neovim versions, since patches from Vim are not merged by chronological order. Signed-off-by: Amit Beka <---> Co-authored-by: Amit Beka <--->
This commit is contained in:
@@ -3895,6 +3895,7 @@ Changed:~
|
|||||||
Removed:~
|
Removed:~
|
||||||
|
|
||||||
Fixed:~
|
Fixed:~
|
||||||
|
* Enable strikethrough for Neovim
|
||||||
* Issue #1029: Fix: error loading plugin when lang uses comma instead of
|
* Issue #1029: Fix: error loading plugin when lang uses comma instead of
|
||||||
dot as decimal separator
|
dot as decimal separator
|
||||||
* Issue #886: :VimwikiGenerateLinks not working on Windows
|
* Issue #886: :VimwikiGenerateLinks not working on Windows
|
||||||
|
|||||||
+1
-1
@@ -437,7 +437,7 @@ hi def link VimwikiTag Keyword
|
|||||||
|
|
||||||
" Deleted called strikethrough
|
" Deleted called strikethrough
|
||||||
" See $VIMRUTIME/syntax/html.vim
|
" See $VIMRUTIME/syntax/html.vim
|
||||||
if v:version > 800 || v:version == 800 && has('patch1038')
|
if v:version > 800 || (v:version == 800 && has('patch1038')) || has('nvim-0.4.3')
|
||||||
hi def VimwikiDelText term=strikethrough cterm=strikethrough gui=strikethrough
|
hi def VimwikiDelText term=strikethrough cterm=strikethrough gui=strikethrough
|
||||||
else
|
else
|
||||||
hi def link VimwikiDelText Constant
|
hi def link VimwikiDelText Constant
|
||||||
|
|||||||
Reference in New Issue
Block a user