很难开始使用 Vim-R-plugin

发布于 2024-10-06 06:41:22 字数 535 浏览 2 评论 0原文

我正在尝试在我的 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 技术交流群。

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

发布评论

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

评论(1

我的奇迹 2024-10-13 06:41:22

抱歉,我的第一个答案超出了范围。

您不需要 : 来使用映射。只需点击 ,rf

旧答案是:

通常,vim 命令可以以行范围为前缀。这里的 :, 建议您指示行范围。

有效的行范围可能是(不是完整列表):

  • a(单行)
  • [a],b(行范围)
  • %(同义词) 1,$)

ab 可以替换为 .(当前行)、$(最后一行)、任何有效的行号、'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 of 1,$)

a and b 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

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