我刚发现use-package
,我想将其与python-mode.el
一起使用。我试过这个:
(use-package python-mode
:mode ("\\.py\\'" . python-mode)
:interpreter ("python" . python-mode))
但python.el
仍在python-mode
。 use-package
示例专门针对python.el
使用python-mode
,但我希望相反。我可以用use-package
完成吗?
(我在OS X上使用GNU Emacs 24.5.1,如果这很重要的话。)
答案 0 :(得分:1)
请勿使用关键字:mode
和:interpreter
。它对我有用,就像这样:
(use-package python-mode
:init
...
:config
...)