bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#27487: [PATCH] Associate .pyi with python-mode


From: Ville Skyttä
Subject: bug#27487: [PATCH] Associate .pyi with python-mode
Date: Sun, 25 Jun 2017 09:46:02 +0300

https://www.python.org/dev/peps/pep-0484/#id43

* lisp/progmodes/python.el (auto-mode-alist): Add .pyi.
---
 lisp/progmodes/python.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 464b931..6f16912 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -273,7 +273,7 @@
 (autoload 'help-function-arglist "help-fns")
 
 ;;;###autoload
-(add-to-list 'auto-mode-alist (cons (purecopy "\\.pyw?\\'")  'python-mode))
+(add-to-list 'auto-mode-alist (cons (purecopy "\\.py[iw]?\\'") 'python-mode))
 ;;;###autoload
 (add-to-list 'interpreter-mode-alist (cons (purecopy "python[0-9.]*") 
'python-mode))
 
-- 
2.9.4






reply via email to

[Prev in Thread] Current Thread [Next in Thread]