From c312d30231f136d2fbb32a2cfea554af5066e6b0 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Fri, 4 Jun 2021 10:07:53 +0200 Subject: Fix detection of racket filetype, closes #720 --- autoload/polyglot/init.vim | 2 +- autoload/polyglot/sleuth.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'autoload') diff --git a/autoload/polyglot/init.vim b/autoload/polyglot/init.vim index 62421e06..afd2ea9d 100644 --- a/autoload/polyglot/init.vim +++ b/autoload/polyglot/init.vim @@ -604,7 +604,7 @@ if !has_key(g:polyglot_is_disabled, 'screen') endif if !has_key(g:polyglot_is_disabled, 'scheme') - au BufNewFile,BufRead *.rkt,*.scm,*.ss setf scheme + au BufNewFile,BufRead *.scm,*.ss setf scheme endif if !has_key(g:polyglot_is_disabled, 'catalog') diff --git a/autoload/polyglot/sleuth.vim b/autoload/polyglot/sleuth.vim index 830a2318..4e5538ea 100644 --- a/autoload/polyglot/sleuth.vim +++ b/autoload/polyglot/sleuth.vim @@ -470,7 +470,7 @@ let s:globs = { \ 'sather': '*.sa', \ 'sbt': '*.sbt', \ 'scala': '*.scala,*.kojo,*.sc', - \ 'scheme': '*.scm,*.ss,*.rkt', + \ 'scheme': '*.scm,*.ss', \ 'scilab': '*.sci,*.sce', \ 'screen': '.screenrc,screenrc', \ 'scss': '*.scss', -- cgit v1.2.3