diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-10-10 17:51:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-10 17:51:31 +0200 |
| commit | 8781213f00a22e20abeb4282204e900db799f4b5 (patch) | |
| tree | 76b4946050d0ff8b708c63f7a9183e3632836960 /runtime/filetype.vim | |
| parent | 3ddd99ec64dcf4b5df069c3a88584accb9848da5 (diff) | |
| download | rneovim-8781213f00a22e20abeb4282204e900db799f4b5.tar.gz rneovim-8781213f00a22e20abeb4282204e900db799f4b5.tar.bz2 rneovim-8781213f00a22e20abeb4282204e900db799f4b5.zip | |
vim-patch:9.0.0711: SubStation Alpha files are not recognized (#20577)
Problem: SubStation Alpha files are not recognized.
Solution: Add patterns for SubStation Alpha files. (closes vim/vim#11332)
https://github.com/vim/vim/commit/084f2620ec7d08d6043de30436197c002fffe3ec
Diffstat (limited to 'runtime/filetype.vim')
| -rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 183d50134c..b6673c1762 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1751,6 +1751,9 @@ au BufNewFile,BufRead *.sed setf sed " SubRip au BufNewFile,BufRead *.srt setf srt +" SubStation Alpha +au BufNewFile,BufRead *.ass,*.ssa setf ssa + " svelte au BufNewFile,BufRead *.svelte setf svelte |