Problem
I'm currently trying to build a 3D web app based on three.js
.
I'm using neovim
as my development environment and YouCompleteMe
as a completion system.
I installed tern to complete JS, and I added .tern-project
file like this.
{
"libs": [
"browser",
"ecmascript",
],
"loadEagerly": [
],
"plugins": {
"threejs": {}
}
}
I also copied threejs.js
and threejs.json
to my project's directory generated by tern-threejs.
However, YouCompleteMe doesn't show semantic completion compared to tern-threejs's demo codemirror
Comparison:
codemirror:
neovim:
Note: I can't see any completion at all.
What seems to be the problem?