在 Vim 中:CocInstall coc-flutter 不工作

In Vim :CocInstall coc-flutter not working

我用Ubuntu18.04

  1. 这是打开.vimrc 时写的

$ vim .vimrc

[coc.nvim] "/path/to/node" is not executable, checkout https://nodejs.org/en/download/

  1. .vimrc 里有这些
syntax on
set nocompatible              " be iMproved, required
set number
filetype off                  " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'dart-lang/dart-vim-plugin'
Plugin 'natebosch/vim-lsc'
Plugin 'natebosch/vim-lsc-dart'
Plugin 'neoclide/coc.nvim', {'branch': 'release'}
call vundle#end()            " required
filetype plugin indent on    " required
let g:lsc_auto_map = v:true
let g:coc_node_path = '/path/to/node'
  1. 我制作 .vimrc PluginInstall。

  2. Vim 版本 8.2.

5.:CocInstall coc-flutter 不生效

我能做什么? Flutter 不会自动写入。

Dart sdk flutter 也安装好了。装在系统上,修好了

"--------飞镖扑动------------

if count(g:bundle_groups, 'dart')

    Plugin 'natebosch/vim-lsc'
    Plugin 'natebosch/vim-lsc-dart'
    Plugin 'dart-lang/dart-vim-plugin'
    Plugin 'thosakwe/vim-flutter'

endif