很难开始使用 Vim-R-plugin
我正在尝试在我的 PC(使用 ubuntu)上安装 VIM 的 R-project(用于统计)插件。
我已按照插件 网页 上的说明进行操作,
- 我已安装了 conque根据要求也插入外壳。
- 我已经安装了 vim-r-plugin
我已将所需的 4 行添加到我的 .vimrc 文件中:
设置不兼容 语法启用 文件类型插件打开 文件类型缩进
- 我已将我的 maplocalleader 设置为
,
- 我打开一个 .R 文件
- ,我尝试命令,例如
:,rf
,我得到:E492: Not an editor command: ,rf
我真的不知道如何解决这个问题,也不知道在哪里可以找到帮助。
I am trying to install the R-project (for statistics) plugin for VIM, on my PC (using ubuntu).
I have followed the instruction on the plugin web page
- I have installed the conque shell plug in as well, as requested.
- I have installed the vim-r-plugin
I have added the 4 needed line to my .vimrc file:
set nocompatible syntax enable filetype plugin on filetype indent on
- I have set my maplocalleader to
,
- I open a .R file
- I try the command, like
:,rf
, and I get:E492: Not an editor command: ,rf
I don't know really how to trouble shout this problem, or where to find help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,我的第一个答案超出了范围。
您不需要
:
来使用映射。只需点击,rf
旧答案是:
通常,vim 命令可以以行范围为前缀。这里的
:,
建议您指示行范围。有效的行范围可能是(不是完整列表):
a
(单行)[a],b
(行范围)%
(同义词)1,$
)a
和b
可以替换为.
(当前行)、$
(最后一行)、任何有效的行号、'x
(其中 x 是标记)以及它们的任何算术组合。但是
,
单独出现在命令名称前面似乎并不合适。另请参阅
:help cmdline-ranges
Sorry, my first answer was out of scope.
You needn't
:
to use mappings. Just hit,rf
old answer was:
Usually, vim commands can be prefixed with a line range. Here the
:,
suggests you are indicating a line range.Valid line ranges might be (not a full list):
a
(single line)[a],b
(line ranges)%
(synonym of1,$
)a
andb
can be replaced with.
(current line),$
(last line), any valid line number,'x
where x is a mark, and any arithmetic combination of them.But
,
alone does not seem to be appropriate in front of a command name.Also see
:help cmdline-ranges