Vim 折叠 R 语法
我在 Linux 机器上使用 vim,需要代码折叠才能适用于 R。我安装了 Vim-R-plusing2,以便将代码从 vim 传递到 R 会话,但当 Foldmethod=syntax 时,折叠不起作用。如何让 R 正常工作?
I'm working with vim on my linux machine and need code folding to work for R. I have the Vim-R-plusing2 installed to enable passing code from vim into an R session, but the folding does not work when foldmethod=syntax. How do I get folding for R working?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要做什么:
您需要将以下代码添加到 vimrc 文件中:
为什么有效:
此选项会更改 Vim-R 插件的加载方式。
此代码是从
syntax/vim.r
复制的,并显示了上面的设置如何更改运行的代码:引用帮助
What to do:
You need to add the following code to your vimrc file:
Why it works:
This option changes how the Vim-R plugin loads.
This code is copied from
syntax/vim.r
and shows how the setting above changes what code is run:Quoting from the help
类似的东西,但参考 markdown ,无论如何你可能会在那里找到一些有用的信息。
您甚至可以尝试
:help Folding
来获取详细说明。Something similar, but referring to markdown, anyway you may find some useful info there.
You may try even
:help folding
for detailed descriptions.