Fix for new versions of ipython

This commit is contained in:
Adam Goldsmith 2016-09-13 13:19:09 -04:00
parent 97d04f99b2
commit 3291c30267

View File

@ -80,8 +80,10 @@
(use-package python
:defer
:config
(if (executable-find "ipython")
(setq python-shell-interpreter "ipython")))
(when (executable-find "ipython")
(setq python-shell-interpreter "ipython")
(setq python-shell-interpreter-args "-i --simple-prompt")
(add-to-list 'python-shell-completion-native-disabled-interpreters "ipython")))
(use-package tramp
:defer