├── .gitignore ├── .npmignore ├── Readme.md ├── package.json ├── src ├── index.js └── util.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-vimtex/HEAD/.npmignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-vimtex/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-vimtex/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-vimtex/HEAD/src/index.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-vimtex/HEAD/src/util.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-vimtex/HEAD/yarn.lock --------------------------------------------------------------------------------