更改 .emacs 以使用 IronPython.exe 并使用 IronPython 模块的代码完成?

发布于 2024-08-31 04:31:18 字数 400 浏览 5 评论 0原文

我使用这个 链接(来自此处的另一个问题)。我是 emacs 的新手。

谁能告诉我应该更改什么,以便它(rope、ropemacs、pymacs、yasnippet 等)拾取 IronPython 模块的符号以完成代码和片段。

我还想映射:

Cx RET - 调用 IronPython.exe 而不是 Python.exe (有关如何执行此操作的任何线索)

PS 我在 XP 计算机上使用带有 Cygwin 的 Emacs

I configured my Emacs for code completion and other help using this link (from another question here on SO). I am a complete newbie to emacs.

Can anyone tell me what should I change so it (rope, ropemacs, pymacs, yasnippet etc) picks up symbols of IronPython modules for code completion and snippets.

Also I want to map:

C-x RET - to invoke IronPython.exe and not Python.exe (any clue on how to do that)

PS I am using Emacs with Cygwin on XP machine

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

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

发布评论

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

评论(1

顾北清歌寒 2024-09-07 04:31:18

变量python-command包含要运行的python解释器的路径。默认情况下,它通常设置为“python”,它运行路径中的第一个 python。

尝试将其更改为直接指向 IronPython exe 文件:

(setq python-command "C:/Program Files/IronPython 2.6/ipy.exe")

The variable python-command contains the path of the python interpreter to be run. By default, this is usually just set to "python", which runs the first python in your path.

Try changing it to point directly to the IronPython exe file:

(setq python-command "C:/Program Files/IronPython 2.6/ipy.exe")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文