From 7e3886d548b20882f1be3621a98a13af1c803086 Mon Sep 17 00:00:00 2001 From: Martin Polden Date: Tue, 7 Dec 2021 18:06:01 +0100 Subject: python: Prefer ipython3 --- lisp/init-python.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lisp/init-python.el') diff --git a/lisp/init-python.el b/lisp/init-python.el index f3b8498..e4b5d9a 100644 --- a/lisp/init-python.el +++ b/lisp/init-python.el @@ -15,12 +15,12 @@ :hook (python-mode . mpolden/python-mode-buffer-local-variables) :config ;; set prefered interpreter - (setq python-shell-interpreter (cond ((executable-find "ipython") "ipython") + (setq python-shell-interpreter (cond ((executable-find "ipython3") "ipython3") ((executable-find "python3") "python3") t "python")) ;; ipython needs --simple-prompt for emacs compatibility ;; https://emacs.stackexchange.com/a/24572 - (when (equal python-shell-interpreter "ipython") + (when (equal python-shell-interpreter "ipython3") (setq python-shell-interpreter-args "-i --simple-prompt"))) (provide 'init-python) -- cgit v1.2.3