├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin ├── nextword.wasm └── wasm_exec.js ├── esbuild.js ├── package.json ├── src ├── ctx.ts └── index.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/README.md -------------------------------------------------------------------------------- /bin/nextword.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/bin/nextword.wasm -------------------------------------------------------------------------------- /bin/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/bin/wasm_exec.js -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/esbuild.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/package.json -------------------------------------------------------------------------------- /src/ctx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/src/ctx.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fannheyward/coc-nextword/HEAD/yarn.lock --------------------------------------------------------------------------------