开发者

Emacs: How to start Local python interpreter when editing a remote python file via tramp

开发者 https://www.devze.com 2022-12-09 18:44 出处:网络
On Emacs,when I start python with C-c ! while editing a remote python file (using tramp - plinkx: on windows), the python interpreter is started on the remote host.

On Emacs, when I start python with C-c ! while editing a remote python file (using tramp - plinkx: on windows), the python interpreter is started on the remote host.

Is there any way I can edit the remote python file and start a local python interpreter?

I am u开发者_JS百科sing python-mode (not the default python.el)


python-mode creates an inferior process via 'make-comint, which uses 'start-file-process, which creates the process relative to the variable 'default-directory. So there are a few ways you can tackle this beast.

The first is to change 'default-directory to be something local, like:

(add-hook 'python-mode-hook (lambda () (setq default-directory "~"))

That has the downside that C-x C-f now behaves differently (starting at ~).

Another is to change the 'default-directory just for the invocation of 'py-shell, like so (untested):

(defadvice py-shell (around py-shell-different-directory activate)
  "set default-directory just for py-shell"
  (let ((default-directory "~"))
    ad-do-it))
0

精彩评论

暂无评论...
验证码 换一张
取 消