From: Stefan Kangas Date: Thu, 26 Sep 2024 15:04:31 +0000 (+0200) Subject: Add Python "*.pth" files to auto-mode-alist X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4019fab6e0aac321680aa39feb390c86335fe65a;p=emacs.git Add Python "*.pth" files to auto-mode-alist * lisp/progmodes/python.el (python--auto-mode-alist-regexp): New variable. (auto-mode-alist, python-ts-mode): Use above new variable. (cherry picked from commit 2f485e68ff96cc66a17df2c0a58e272bbfc24765) --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 7ee45b4bb7c..8b69d0b3a74 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -293,8 +293,15 @@ (autoload 'comint-mode "comint") (autoload 'help-function-arglist "help-fns") +(defconst python--auto-mode-alist-regexp + (rx "." (or "py" + "pth" ; Python Path Configuration File + "pyi" ; Python Stub File (PEP 484) + "pyw") ; MS-Windows specific extension + eos)) + ;;;###autoload -(add-to-list 'auto-mode-alist (cons (purecopy "\\.py[iw]?\\'") 'python-mode)) +(add-to-list 'auto-mode-alist (cons python--auto-mode-alist-regexp 'python-mode)) ;;;###autoload (add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 'python-mode)) @@ -7199,7 +7206,7 @@ implementations: `python-mode' and `python-ts-mode'." (when python-indent-guess-indent-offset (python-indent-guess-indent-offset)) - (add-to-list 'auto-mode-alist '("\\.py[iw]?\\'" . python-ts-mode)) + (add-to-list 'auto-mode-alist '(python--auto-mode-alist-regexp . python-ts-mode)) (add-to-list 'interpreter-mode-alist '("python[0-9.]*" . python-ts-mode)))) (derived-mode-add-parents 'python-ts-mode '(python-mode))