From 7c4516fe93d865f4ef1877181f8156b8b9331856 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sun, 19 Mar 2023 20:43:26 +0000 Subject: patch 9.0.1415: Crystal files are not recognized Problem: Crystal files are not recognized. Solution: Add a pattern for Crystal files. (Amaan Qureshi, closes #12175) --- runtime/filetype.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index bcd36b521..97b3d6450 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -439,6 +439,9 @@ au BufNewFile,BufRead *.cook setf cook " needs to be inspected. au BufNewFile,BufRead *.cql setf cqlang +" Crystal +au BufNewFile,BufRead *.cr setf crystal + " CSV Files au BufNewFile,BufRead *.csv setf csv -- cgit v1.2.1