使用use-package加载python-mode.el仍然得到python.el

时间:2015-11-04 19:07:39

标签: emacs

我刚发现use-package,我想将其与python-mode.el一起使用。我试过这个:

(use-package python-mode
  :mode ("\\.py\\'" . python-mode)
  :interpreter ("python" . python-mode))

python.el仍在python-modeuse-package示例专门针对python.el使用python-mode,但我希望相反。我可以用use-package完成吗?

(我在OS X上使用GNU Emacs 24.5.1,如果这很重要的话。)

1 个答案:

答案 0 :(得分:1)

请勿使用关键字:mode:interpreter。它对我有用,就像这样:

(use-package python-mode
     :init
     ...
     :config
     ...)