youcompleteme如何补全html中的js?
1 安装node
curl -o- https://raw.githubusercontent... | bash
source ~/.nvm/nvm.sh
nvm install node
2 安装tern_for_vim
$ cd ~/.vim/bundle
$ git clone https://github.com/marijnh/te...
3 安装YouCompleteMe
cd ~/.vim/bundle/YouCompleteMe
$ ./install.sh --clang-completer --tern-completer
4 建立 .tern-project
在用户根目录 ~/ 下建立 .tern-project 文件
{ "libs": [
"browser",
"underscore",
"jquery"
],
"plugins": {
"node": {}
}
}
现在,我编辑 vim test.js
输入 document.后,自动出现补全
vim test.html
此时,输入 document.后 ,不出现自动补全,请问,怎么办呢?
以上是 youcompleteme如何补全html中的js? 的全部内容, 来源链接: utcz.com/p/198810.html