summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBrennon M <d1pl0mat@outlook.com>2021-06-06 20:15:53 +0200
committerBram Moolenaar <Bram@vim.org>2021-06-06 20:15:53 +0200
commit6db7b6375a3ea3afef5295b1366896902012e640 (patch)
tree841d32c78c357bdeee6e8be66cb3e158d51c43d1 /runtime
parent518df27ebe23033a25304d3826187c27bfa53c01 (diff)
patch 8.2.2954: short file name extension for Scala not recognizedv8.2.2954
Problem: Short file name extension for Scala not recognized. Solution: Recognize *.sc. (closes #8337)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index b1eb2ecbea..8ca6f6a77b 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1496,7 +1496,7 @@ au BufNewFile,BufRead *.sass setf sass
au BufNewFile,BufRead *.sa setf sather
" Scala
-au BufNewFile,BufRead *.scala setf scala
+au BufNewFile,BufRead *.scala,*.sc setf scala
" SBT - Scala Build Tool
au BufNewFile,BufRead *.sbt setf sbt