您可以将 Ropemacs 建议通过管道传递给另一个命令吗?

发布于 2024-11-07 07:26:35 字数 460 浏览 1 评论 0原文

有没有办法从ropemacs的rope-code-assist(在ropemode中绑定到“M-/”)获取完成建议以在另一个命令中使用?

我想做的是这样的:

(defun rope-completions-in-ido ()
    (interactive)
    (insert
        (let ((mylist ROPE-GET-COMPLETIONS-LIST))
             (ido-completing-read "Suggested Completions: " mylist))))
(define-key py-mode-map (kbd "M-/") 'rope-completions-in-ido)

编辑:切换到 python.el,它神奇地开始工作,不需要上面的 hack。现在,只需调用“rope-code-assist”即可以 ido 方式在迷你缓冲区中显示建议。

is there a way of getting the completions suggestions from ropemacs' rope-code-assist (bound to "M-/" in ropemode) to use in another command?

What I'm trying to do is something like this:

(defun rope-completions-in-ido ()
    (interactive)
    (insert
        (let ((mylist ROPE-GET-COMPLETIONS-LIST))
             (ido-completing-read "Suggested Completions: " mylist))))
(define-key py-mode-map (kbd "M-/") 'rope-completions-in-ido)

Edit:Switched to python.el, and it magically started working, no need for the above hack. Simply calling rope-code-assist now brings up the suggestions in the minibuffer in an ido way.

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

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

发布评论

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

评论(1

拥抱我好吗 2024-11-14 07:26:35

(如编辑中所述)切换到 python.el,它神奇地开始工作,不需要上面的 hack。现在,只需调用“rope-code-assist”即可以 ido 方式在迷你缓冲区中显示建议。

(As mentioned in edit) Switched to python.el, and it magically started working, no need for the above hack. Simply calling rope-code-assist now brings up the suggestions in the minibuffer in an ido way.

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