From: Bram Moolenaar Date: Sun, 7 Jun 2020 19:58:54 +0000 (+0200) Subject: patch 8.2.0930: script filetype detection trips over env -S argument X-Git-Tag: v8.2.0930 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5e18f29fac9253b0ccf1fde5e74bff72fa1ba60;p=vim patch 8.2.0930: script filetype detection trips over env -S argument Problem: Script filetype detection trips over env -S argument. Solution: Remove "-S" and "--ignore-environment". (closes #5013) Add tests. --- diff --git a/runtime/scripts.vim b/runtime/scripts.vim index ba33f0ebf..6aae2b1ec 100644 --- a/runtime/scripts.vim +++ b/runtime/scripts.vim @@ -1,7 +1,7 @@ " Vim support file to detect file types in scripts " " Maintainer: Bram Moolenaar -" Last change: 2020 Mar 06 +" Last change: 2020 Jun 07 " This file is called by an autocommand for every file that has just been " loaded into a buffer. It checks if the type of file can be recognized by @@ -35,10 +35,12 @@ let s:line1 = getline(1) if s:line1 =~# "^#!" " A script that starts with "#!". - " Check for a line like "#!/usr/bin/env VAR=val bash". Turn it into + " Check for a line like "#!/usr/bin/env {options} bash". Turn it into " "#!/usr/bin/bash" to make matching easier. + " Recognize only a few {options} that are commonly used. if s:line1 =~# '^#!\s*\S*\\\"\", 'tx') call assert_equal('"setfiletype java javacc javascript javascriptreact', @:) diff --git a/src/version.c b/src/version.c index 3015f8fd1..e446a7be4 100644 --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 930, /**/ 929, /**/