diff options
author | Brian Ryall <115141+polarmutex@users.noreply.github.com> | 2021-02-17 18:22:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 00:22:48 +0100 |
commit | 18f90336cbe31100a9ad03706c20a903e0c2975f (patch) | |
tree | 686fd3ad07de93717d8294746e66011a34a66f77 /src | |
parent | 64b7d7ae78fe0d6a81f889db66510fd1d9810b03 (diff) | |
download | rneovim-18f90336cbe31100a9ad03706c20a903e0c2975f.tar.gz rneovim-18f90336cbe31100a9ad03706c20a903e0c2975f.tar.bz2 rneovim-18f90336cbe31100a9ad03706c20a903e0c2975f.zip |
vim-patch:8.2.2523: Svelte filetype not recognized (#13961)
Problem: Svelte filetype not recognized.
Solution: Add a detection rule. (Brian Ryall, closes vim/vim#7858)
https://github.com/vim/vim/commit/c0fcb6e0b10050145e7d334b68b1bdc5201fed05
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index bc19e93682..6bc5fba5db 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -428,6 +428,7 @@ let s:filename_checks = { \ 'slrnrc': ['.slrnrc'], \ 'slrnsc': ['file.score'], \ 'sm': ['sendmail.cf'], + \ 'svelte': ['file.svelte'], \ 'smarty': ['file.tpl'], \ 'smcl': ['file.hlp', 'file.ihlp', 'file.smcl'], \ 'smith': ['file.smt', 'file.smith'], |