Using multiple Python shells in Emacs 'python-mode' with Python or IPython

余生颓废 提交于 2020-01-22 15:14:25

问题


Is there a way to force a new instance of python-shell while running Emacs? It would be convenient when working on multiple projects with separate working directories (and different sets of modules).

Any attempt to invoke python-shell will only pull up the current instance.


回答1:


You need to rename your original python-shell before opening up a new one. Use M-x rename-buffer.




回答2:


Renaming the buffer doesn't work for me, but you can use the third parameter of run-python.

M - : (run-python nil nil t)RET

Since the binding to switch to the current buffer isn't really helpful you can rebound it to something more useful

(defun my-run-python (&optional new)
  (interactive "P")
  (if new
   (run-python nil nil new)
   (pop-to-buffer (process-buffer (python-proc)) t)))

(define-key python-mode-map (kbd "C-c C-z") 'my-run-python)

And use C-cC-z to switch to the current python interpreter and C-uC-cC-z to switch to a fresh python interpreter.




回答3:


When using python-mode via python.el, having one Python shell per Python buffer is the default.

However, you can change this default behavior if what you want instead is for multiple Python buffers to share the same Python shell. To do so, after opening the first Python buffer, enter:

M-x python-set-proc

...which is documented:

Set the default value of `python-buffer' to correspond to this buffer.
If the current buffer has a local value of `python-buffer', set the
default (global) value to that.  The associated Python process is the
one that gets input from C-c C-r et al when used in a buffer that
doesn't have a local value of `python-buffer'.

Then later, if you want a new Python buffer to use its own shell, enter:

M-x set-variable python-buffer [RET] nil [RET]

After doing so and then opening a new Python buffer, a new Python shell will be created for that buffer after entering python-switch-to-python or C-c C-z.



来源:https://stackoverflow.com/questions/8281762/using-multiple-python-shells-in-emacs-python-mode-with-python-or-ipython

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!