diff options
author | Kyle Meyer <kyle@kyleam.com> | 2015-05-31 21:44:28 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2015-05-31 21:44:28 -0400 |
commit | eb0b228b6c63865d5be2354575aafa897b1b98d9 (patch) | |
tree | 0de626af8214ad9e641b541d3ca7f028e562eddf /lisp | |
parent | 3bfdd302e74889e31b12f55d13b87e7e2db54235 (diff) | |
download | emacs.d-eb0b228b6c63865d5be2354575aafa897b1b98d9.tar.gz |
Disable python shell autodetection
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/init-python.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/init-python.el b/lisp/init-python.el index 93a06f9..30e8e15 100644 --- a/lisp/init-python.el +++ b/lisp/init-python.el @@ -1,6 +1,7 @@ (setq python-fill-docstring-style 'pep-257-nn) -(setq python-shell-interpreter "ipython") +(setq python-shell-interpreter "ipython" + python-shell-prompt-detect-enabled nil) (add-to-list 'interpreter-mode-alist '("python2" . python-mode)) (add-to-list 'interpreter-mode-alist '("python3" . python-mode)) |