Emacs:通过 trapmp 编辑远程 python 文件时如何启动本地 python 解释器

发布于 2024-08-08 14:28:53 字数 295 浏览 2 评论 0原文

在 Emacs 上,当我在编辑远程 python 文件时使用 Cc ! 启动 python(在 Windows 上使用 Tramp - plinkx:)时,Python 解释器将在远程主机上启动。

有什么方法可以编辑远程 python 文件并启动本地 python 解释器吗?

我正在使用 python-mode (不是默认的 python.el)

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 using python-mode (not the default python.el)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

书间行客 2024-08-15 14:28:53

python-mode 通过 'make-comint,它使用'start-file-process,它创建相对于变量'default-directory的进程。因此,有几种方法可以对付这个野兽。

第一个是将 'default-directory 更改为本地目录,例如:

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

这样做的缺点是 Cx Cf 现在的行为不同(从 ~)。

另一种方法是更改​​ 'default-directory 只是为了调用 'py-shell,如下所示(未经测试):

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

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))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文