mirror of
https://github.com/neovim/neovim.git
synced 2026-07-31 04:39:07 +00:00
closes: vim/vim#20778
ac1bb93421
Co-authored-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Co-Authored-by: Alejandro Sanchez <hiphish@posteo.de>
12 lines
238 B
VimL
12 lines
238 B
VimL
" Vim ftplugin file
|
|
" Language: Jinja
|
|
" Maintainer: Alejandro Sanchez
|
|
" Upstream: https://gitlab.com/HiPhish/jinja.vim
|
|
|
|
if exists("b:did_jinjaplugin")
|
|
finish
|
|
endif
|
|
|
|
setlocal commentstring={#\ %s\ #}
|
|
let b:undo_ftplugin = "setlocal com<"
|