diff runtime/filetype.vim @ 24832:5e3fa7c7a95f v8.2.2954

patch 8.2.2954: short file name extension for Scala not recognized Commit: https://github.com/vim/vim/commit/6db7b6375a3ea3afef5295b1366896902012e640 Author: Brennon M <d1pl0mat@outlook.com> Date: Sun Jun 6 20:15:53 2021 +0200 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 https://github.com/vim/vim/issues/8337)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Jun 2021 20:30:03 +0200
parents 1077a2762d06
children 50cdd1e6f152
line wrap: on
line diff
--- 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