如何自动启动 Ropemacs 模式?
当我打开 python 文件时,我每次都必须手动启动 Ropemacs-mode 才能获取按键绑定。我尝试添加这样的东西来自动启动ropemacs:
(add-hook 'python-mode-hook (lambda ()
(ropemacs-mode)
))
但它似乎破坏了flymake。我在这里做错了什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不要使用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-")
我的问题是一些使用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.