diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-09-12 15:12:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-12 15:12:39 +0200 |
commit | afe01842ef37620e63cab815b84c89454a6b4a87 (patch) | |
tree | 2f52f6206f9c0ead0e309e6b7e0fb4a8ca4f7b0b /runtime/lua/vim | |
parent | add27f2898e0558be2f2f9e001a6da8c3207e7ad (diff) | |
download | rneovim-afe01842ef37620e63cab815b84c89454a6b4a87.tar.gz rneovim-afe01842ef37620e63cab815b84c89454a6b4a87.tar.bz2 rneovim-afe01842ef37620e63cab815b84c89454a6b4a87.zip |
vim-patch:9.0.0448: SubRip files are not recognized (#20167)
Problem: SubRip files are not recognized.
Solution: Add a pattern for SubRip. (closes vim/vim#11113)
https://github.com/vim/vim/commit/5a4eb55122e45444d3a6c56ce108ce29bc8e52ab
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index e4be1f04a2..39985c948e 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -959,6 +959,7 @@ local extension = { srec = 'srec', mot = 'srec', ['s19'] = 'srec', + srt = 'srt', st = 'st', imata = 'stata', ['do'] = 'stata', |