使用 vim 打开文件时如何解决这些错误?

How can I resolve these errors when I open a file with vim?

因此,当我在 Ubuntu 20.04 笔记本电脑上打开文件(即 vi examples.R)时,出现以下错误字符串:

Error detected while processing /home/mikel/.vimrc:
line    1:
E319: Sorry, the command is not available in this version: call plug#begin('~/.vim/plugged')
line    2:
E492: Not an editor command: Plug 'sheerun/vim-polyglot'
line    3:
E492: Not an editor command: Plug 'trevordmiller/nova-vim'
line    4:
E492: Not an editor command: Plug 'jalvesaq/Nvim-R'
line    6:
E319: Sorry, the command is not available in this version: call plug#end()
Press ENTER or type command to continue

我的 ~/.vimrc 文件是:

call plug#begin('~/.vim/plugged')
Plug 'sheerun/vim-polyglot'
Plug 'trevordmiller/nova-vim'
Plug 'jalvesaq/Nvim-R'

call plug#end()

诊断这个问题时,我什至不知道从哪里开始。你们有什么想法吗?谢谢!

你的 .vimrc 好像坏了,你的 vi 只是 vim 的别名。尝试修复您的配置(在我看来 Vundle 不知何故搞砸了)或删除 ~/.vimrc 并重新开始。