Emacs、ESS、R - 我是如何做到的?

发布于 2024-09-08 10:19:19 字数 327 浏览 3 评论 0原文

http://picasaweb.google.com/lh/photo/F- p2qK3itxJsgj1tLLGsow?feat=directlink

如果你看一下图片,就会发现 minbuffer 底部的 R 帮助文件中有这个用法位。

我怎么做到的?它不知怎的就出现了,也许是因为我敲碎了键盘试图运行命令。 当我重新启动 emacs 时它就消失了:(

谢谢

http://picasaweb.google.com/lh/photo/F-p2qK3itxJsgj1tLLGsow?feat=directlink

If you look at the picture, theres this usage bit from the R help files at the bottom in the minbuffer.

howd i do that? it somehow just appeared, maybe cos i mashed the keyboard trying to run the commands.
It disappeared when i restarted emacs:(

thanks

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

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

发布评论

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

评论(2

画中仙 2024-09-15 10:19:19

有一个函数 ess-r-args-show 可以执行此操作。

我不确定它的默认键绑定是什么,但不知何故,我最终在我的一个配置文件中得到了这个,它将它绑定到 F2:

;; Show function argument completion while editing R code and interacting with
;; an inferior R process
(define-key ess-mode-map [f2] 'ess-r-args-show)
(define-key ess-mode-map [f3] 'ess-r-args-insert)
(define-key inferior-ess-mode-map [f2] 'ess-r-args-show)
(define-key inferior-ess-mode-map [f3] 'ess-r-args-insert)

我相信您当前的 *.R 缓冲区需要“绑定”到正在运行的 ESS/R 进程。

There is a function ess-r-args-show that does this.

I'm not sure what the default keybindings are for it, but somehow I've ended up with this in one of my config files, which binds it to F2:

;; Show function argument completion while editing R code and interacting with
;; an inferior R process
(define-key ess-mode-map [f2] 'ess-r-args-show)
(define-key ess-mode-map [f3] 'ess-r-args-insert)
(define-key inferior-ess-mode-map [f2] 'ess-r-args-show)
(define-key inferior-ess-mode-map [f3] 'ess-r-args-insert)

I believe your current *.R buffer needs to be "tied" to a running ESS/R process.

紫罗兰の梦幻 2024-09-15 10:19:19

有一个 ess-eldoc 包,只要您位于括号内,它就会显示参数。 激活 put: 。

(require 'ess-eldoc) 

加载 ess-site 后,在 emacs 中

[编辑]:ess-eldoc 包不再存在。 Eldoc 在 ESS 中默认激活。

There is an ess-eldoc package which would display the args whenever you are inside the parenthesis. To activate put:

(require 'ess-eldoc) 

in your emacs after you load the ess-site.

[Edit]: ess-eldoc package does not exist anymore. Eldoc is activated by default in ESS.

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