diff options
author | Luke Drummond <ldrumm@rtps.co> | 2020-01-11 17:48:23 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2020-01-14 23:17:41 +0530 |
commit | 4e41acb0224d851f2fc4610d7c8a84c5d6c88a9e (patch) | |
tree | 609b7f2b3fa659f74c9bebe3a0144ad364130bff /data | |
parent | 64432e94481dbd55bedf92f21610bc5ed6b52655 (diff) | |
download | meson-4e41acb0224d851f2fc4610d7c8a84c5d6c88a9e.zip meson-4e41acb0224d851f2fc4610d7c8a84c5d6c88a9e.tar.gz meson-4e41acb0224d851f2fc4610d7c8a84c5d6c88a9e.tar.bz2 |
Add .wrap file syntax detection for vim
wrap files are ini syntax, and vim has support for this via the `dosini`
syntax type
[skip ci]
Diffstat (limited to 'data')
-rw-r--r-- | data/syntax-highlighting/vim/ftdetect/meson.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/syntax-highlighting/vim/ftdetect/meson.vim b/data/syntax-highlighting/vim/ftdetect/meson.vim index 84db70c..3233c58 100644 --- a/data/syntax-highlighting/vim/ftdetect/meson.vim +++ b/data/syntax-highlighting/vim/ftdetect/meson.vim @@ -1,2 +1,3 @@ au BufNewFile,BufRead meson.build set filetype=meson au BufNewFile,BufRead meson_options.txt set filetype=meson +au BufNewFile,BufRead *.wrap set filetype=dosini |