diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-10 14:54:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-10 14:54:13 +0200 |
commit | 91a2e7a571c8615f2ffd9046687a6b438356db2b (patch) | |
tree | 802e0f70f6723283dc143f314357cf90ce72b7ab /runtime/ftplugin/jsonnet.vim | |
parent | 2a1c65b330c1cf65207cdd992529ad3bb1a197a4 (diff) | |
download | rneovim-91a2e7a571c8615f2ffd9046687a6b438356db2b.tar.gz rneovim-91a2e7a571c8615f2ffd9046687a6b438356db2b.tar.bz2 rneovim-91a2e7a571c8615f2ffd9046687a6b438356db2b.zip |
vim-patch:71b6d3397649 (#20144)
Update runtime files
https://github.com/vim/vim/commit/71b6d3397649fed68ef587aa863fcbdf5fdb057a
Diffstat (limited to 'runtime/ftplugin/jsonnet.vim')
-rw-r--r-- | runtime/ftplugin/jsonnet.vim | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/runtime/ftplugin/jsonnet.vim b/runtime/ftplugin/jsonnet.vim new file mode 100644 index 0000000000..1e621e1867 --- /dev/null +++ b/runtime/ftplugin/jsonnet.vim @@ -0,0 +1,17 @@ +" Vim filetype plugin +" Language: Jsonnet +" Maintainer: Cezary Drożak <cezary@drozak.net> +" URL: https://github.com/google/vim-jsonnet +" Last Change: 2022-09-08 + +" Only do this when not done yet for this buffer +if exists("b:did_ftplugin") + finish +endif + +" Don't load another plugin for this buffer +let b:did_ftplugin = 1 + +setlocal commentstring=//\ %s + +let b:undo_ftplugin = "setlocal commentstring<" |