From: Wilhelm Kirschbaum <wkirschbaum@gmail.com>
To: 64939@debbugs.gnu.org
Subject: bug#64939: 30.0.50; The default auto-mode-interpreter-regexp does not match env with flags
Date: Sat, 29 Jul 2023 23:38:07 +0200 [thread overview]
Message-ID: <878rays89s.fsf@gmail.com> (raw)
In-Reply-To: <87mszebgwy.fsf@gmail.com>
> A file without an extension will load ruby-mode if the first
> line is:
>
> #!/usr/bin/env ruby
>
> but not when the first line is:
>
> #!/usr/bin/env -S ruby -e 'puts 123'
>
> Is there any reason why the latter should not be matched by the
> default
> `auto-mode-interpreter-regexp' value in 'files.el'?
>
>
> A more useful example I stumbled on today while working on a
> language
> server after adding:
>
> `(add-to-list 'interpreter-mode-alist '("elixir"
> . elixir-ts-mode))'
>
>
> #!/usr/bin/env -S elixir --erl "-kernel standard_io_encoding
> latin1"
>
> Node.start(:"next-ls-#{System.system_time()}", :shortnames)
> ....
>
>
>
> Wilhelm
This is a very naive solution to the above, but I am probably
missing some
knowledge here and will break for anyone setting the var to
something
custom.
modified lisp/files.el
@@ -3243,7 +3243,7 @@ inhibit-local-variables-p
(defvar auto-mode-interpreter-regexp
(purecopy "#![ \t]?\\([^ \t\n]*\
-/bin/env[ \t]\\)?\\([^ \t\n]+\\)")
+/bin/env[ \t]\\)?\\(-\\{1,2\\}[a-zA-Z1-9=]+[ \t]+\\)?\\([^
\t\n]+\\)")
"Regexp matching interpreters, for file mode determination.
This regular expression is matched against the first line of a
file
to determine the file's mode in `set-auto-mode'. If it matches,
the file
@@ -3445,7 +3445,7 @@ set-auto-mode
(setq mode (save-excursion
(goto-char (point-min))
(if (looking-at
auto-mode-interpreter-regexp)
- (match-string 2))))
+ (match-string 3))))
;; Map interpreter name to a mode, signaling we're done
at the
;; same time.
(setq done (assoc-default
modified lisp/progmodes/sh-script.el
@@ -1481,7 +1481,7 @@ sh--guess-shell
(cond ((save-excursion
(goto-char (point-min))
(looking-at auto-mode-interpreter-regexp))
- (match-string 2))
+ (match-string 3))
((not buffer-file-name) sh-shell-file)
;; Checks that use `buffer-file-name' follow.
((string-match "\\.m?spec\\'" buffer-file-name) "rpm")
next prev parent reply other threads:[~2023-07-29 21:38 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-29 20:08 bug#64939: 30.0.50; The default auto-mode-interpreter-regexp does not match env with flags Wilhelm Kirschbaum
2023-07-29 21:38 ` Wilhelm Kirschbaum [this message]
2023-07-30 5:04 ` Eli Zaretskii
2023-07-30 9:38 ` Wilhelm Kirschbaum
2023-07-30 10:04 ` Eli Zaretskii
2023-07-31 7:11 ` Wilhelm Kirschbaum
2023-07-31 17:38 ` Juri Linkov
2023-08-01 6:20 ` Wilhelm Kirschbaum
2023-07-30 4:53 ` Eli Zaretskii
2023-07-30 8:28 ` Wilhelm Kirschbaum
2023-07-30 10:03 ` Eli Zaretskii
2023-07-30 10:27 ` Wilhelm Kirschbaum
2024-01-31 19:52 ` bug#64939: Malcolm Cook
2024-02-01 18:52 ` bug#64939: Malcolm Cook
2024-02-10 8:27 ` bug#64939: Eli Zaretskii
2024-02-10 10:23 ` bug#64939: 30.0.50; The default auto-mode-interpreter-regexp does not match env with flags Kévin Le Gouguec
2024-02-10 17:08 ` Kévin Le Gouguec
2024-02-10 17:23 ` Malcolm Cook
2024-02-17 8:33 ` Eli Zaretskii
2024-02-28 17:57 ` Wilhelm Kirschbaum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=878rays89s.fsf@gmail.com \
--to=wkirschbaum@gmail.com \
--cc=64939@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).