Sending code from Python buffer to IPython session running from M-x ansi-term

ぃ、小莉子 提交于 2019-12-12 15:18:26

问题


Say I open a terminal emulator in Emacs with M-x ansi-term. This opens a buffer in Emacs with the shell of my choice. Say I then run ipython from this shell. Can I send code to this ipython session from another buffer with Python code in Emacs? If so how?


回答1:


I have a minor mode for this purpose (except it is not IPython-specific and I mostly use it for shell scripts): isend-mode.

Here is how you would use it:

  1. Open an ansi-term buffer:

    M-xansi-termRET/usr/bin/ipythonRET

  2. Open the buffer with the code you want to execute, and associate it to the interpreter buffer:

    M-xisend-associateRET*ansi-term*RET

  3. Hit C-RET in the python buffer to send the current line to the interpreter in the ansi-term buffer.




回答2:


(defun send-buffer-to-ipython ()
  "Send current buffer to the running ipython process."
  (interactive)
  (let* ((ipython-buffer "*ansi-term*") ; the buffer name of your running terminal
         (proc (get-buffer-process ipython-buffer)))
    (unless proc
      (error "no process found"))
    (save-buffer)
    (process-send-string proc
                         (format "execfile(\"%s\")\n" (buffer-file-name)))
    (pop-to-buffer ipython-buffer)      ; show ipython and select it
    ;; (display-buffer ipython-buffer)  ; show ipython but don't select it
    ))

Then bind command send-buffer-to-ipython to any key you like. I bind it to C-c C-c

(define-key python-mode-map [?\C-c ?\C-c] 'send-buffer-to-ipython)



回答3:


with python-mode.el

M-x customize-variable RET py-shell-name RET ansi-term

M-x ansi-term RET ipython RET

C-c C-c from Python-buffer than executes in IPython shell

Caveat: a shebang precedes default py-shell-name

https://launchpad.net/python-mode/trunk/6.0.12/+download/python-mode.el-6.0.12.tar.gz



来源:https://stackoverflow.com/questions/13445153/sending-code-from-python-buffer-to-ipython-session-running-from-m-x-ansi-term

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