├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── after └── ftplugin │ └── javascript_tern.vim ├── autoload └── tern.vim ├── doc └── tern.txt ├── ftdetect └── tern.vim ├── package.json ├── script └── tern.py └── vim_config.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /doc/tags 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/README.md -------------------------------------------------------------------------------- /after/ftplugin/javascript_tern.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/after/ftplugin/javascript_tern.vim -------------------------------------------------------------------------------- /autoload/tern.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/autoload/tern.vim -------------------------------------------------------------------------------- /doc/tern.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/doc/tern.txt -------------------------------------------------------------------------------- /ftdetect/tern.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/ftdetect/tern.vim -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/package.json -------------------------------------------------------------------------------- /script/tern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/script/tern.py -------------------------------------------------------------------------------- /vim_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ternjs/tern_for_vim/HEAD/vim_config.json --------------------------------------------------------------------------------