如何自动启动 Ropemacs 模式?

发布于 2024-11-30 05:29:31 字数 261 浏览 0 评论 0 原文

当我打开 python 文件时,我每次都必须手动启动 Ropemacs-mode 才能获取按键绑定。我尝试添加这样的东西来自动启动ropemacs:

(add-hook 'python-mode-hook (lambda ()
                               (ropemacs-mode)
                               ))

但它似乎破坏了flymake。我在这里做错了什么?

When I open a python file I have to manually start ropemacs-mode to get the key bindings each time. I tried adding something like this to automatically start ropemacs:

(add-hook 'python-mode-hook (lambda ()
                               (ropemacs-mode)
                               ))

But it seems to break flymake. What am I doing wrong here?

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

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

发布评论

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

评论(2

酷炫老祖宗 2024-12-07 05:29:31

不要使用ropemacs,但自述文件这样说

安装pymacs后,添加这些到您的 ~/.emacs 文件的行::
<代码>
(需要“pymacs”)
(pymacs-加载“ropemacs”“绳索-”)

Dont use ropemacs but the readme says like this

After installing pymacs, add these lines to your ~/.emacs file::

(require 'pymacs)
(pymacs-load "ropemacs" "rope-")

春庭雪 2024-12-07 05:29:31

我的问题是一些使用autocomplete.el以及ropemacs和yas的代码,我在这里找到了这些代码:

http://hide1713.wordpress.com/2009/01/30/setup-perfect-python-environment-in-emacs/

一旦我注释掉与自动完成相关的块,其他一切就开始了按预期工作。

My problem was with some code for using autocomplete.el along with ropemacs and yas which I found here:

http://hide1713.wordpress.com/2009/01/30/setup-perfect-python-environment-in-emacs/

Once I commented out the block relating to autocomplete everything else started working as expected.

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