neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit e265363a884834ecbc43ede676b3d6127d644b34
parent fae4d3fa1b65b7632d048cad2a1beb7afaa61c21
Author: Christian Clason <c.clason@uni-graz.at>
Date:   Thu, 17 Oct 2024 09:53:08 +0200

vim-patch:5e53fca: runtime(jinja): Support jinja syntax as secondary filetype

fixes: #vim/vim#15880
closes: vim/vim#15885

https://github.com/vim/vim/commit/5e53fca76fd991d64d83429d74b573cc73116d66

Co-authored-by: Gregory Anders <greg@gpanders.com>

Diffstat:
Mruntime/syntax/jinja.vim | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/runtime/syntax/jinja.vim b/runtime/syntax/jinja.vim @@ -2,8 +2,9 @@ " Language: Jinja " Maintainer: Gregory Anders " Upstream: https://gitlab.com/HiPhish/jinja.vim +" Last Change: 2024 Oct 16 -if exists('b:current_syntax') +if exists('b:current_syntax') && b:current_syntax =~? 'jinja' finish endif