From 5615ea8b6b83e3b3702198bbeccd4bb52b131502 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Sun, 12 Sep 2021 13:09:18 +0200 Subject: vim-patch:8.2.3368: not all Racket files are recognized (#15643) Problem: Not all Racket files are recognized. Solution: Also recognize .rktl and .rktd files. (Doug Kearns) https://github.com/vim/vim/commit/9cd91a1e8816d727fbdbf0b3062288e15abc5f4d --- runtime/filetype.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 206b22d460..b038f2473d 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1625,7 +1625,7 @@ au BufNewFile,BufRead .zshrc,.zshenv,.zlogin,.zlogout,.zcompdump setf zsh au BufNewFile,BufRead *.zsh setf zsh " Scheme -au BufNewFile,BufRead *.scm,*.ss,*.rkt setf scheme +au BufNewFile,BufRead *.scm,*.ss,*.rkt,*.rktd,*.rktl setf scheme " Screen RC au BufNewFile,BufRead .screenrc,screenrc setf screen -- cgit