在运行中出现以下错误
:插件安装

Error detected while processing function <SNR>3_job_handler:
E121: Undefined variable: self


插件安装永远不会完成。

我的.vimrc的一部分

set nocompatible
set hidden
set nowrap
set termguicolors
filetype on
map  <c-l> :tabn<cr>
map  <c-h> :tabp<cr>
map  <c-n> :tabnew<cr>
call plug#begin('~/.vim/plugged')

....

"typescript
Plug 'mhartington/nvim-typescript'
call plug#end()

最佳答案

我不得不更新vim-plug

我跑了

curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim


现在工作正常

10-08 16:41