diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-06-26 11:43:19 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-06-26 11:43:35 -0400 |
commit | 7a239a8a9affc2bac215dec1d08e55e1b065a4c4 (patch) | |
tree | 1b6f0c557c930ea9d95ce765dd8c967b9d349a7c /src | |
parent | eb7e7ad882aedc2204a46289f4b66996e835697b (diff) | |
download | rneovim-7a239a8a9affc2bac215dec1d08e55e1b065a4c4.tar.gz rneovim-7a239a8a9affc2bac215dec1d08e55e1b065a4c4.tar.bz2 rneovim-7a239a8a9affc2bac215dec1d08e55e1b065a4c4.zip |
vim-patch:8.2.2954: short file name extension for Scala not recognized
Problem: Short file name extension for Scala not recognized.
Solution: Recognize *.sc. (closes vim/vim#8337)
https://github.com/vim/vim/commit/6db7b6375a3ea3afef5295b1366896902012e640
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_filetype.vim b/src/nvim/testdir/test_filetype.vim index f10d2b6159..eb6151fbe1 100644 --- a/src/nvim/testdir/test_filetype.vim +++ b/src/nvim/testdir/test_filetype.vim @@ -424,7 +424,7 @@ let s:filename_checks = { \ 'sass': ['file.sass'], \ 'sather': ['file.sa'], \ 'sbt': ['file.sbt'], - \ 'scala': ['file.scala'], + \ 'scala': ['file.scala', 'file.sc'], \ 'scheme': ['file.scm', 'file.ss', 'file.rkt'], \ 'scilab': ['file.sci', 'file.sce'], \ 'screen': ['.screenrc', 'screenrc'], |