├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── main.yml │ ├── publish.yml │ └── update-settings.yml ├── .gitignore ├── .node-version ├── .npmignore ├── .npmrc ├── .vim └── coc-settings.json ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── scripts ├── nvim.sh └── update-settings.js ├── src ├── __mocks__ │ └── coc.nvim.ts ├── commands.ts ├── extension.ts └── utils │ ├── config.ts │ ├── db.ts │ ├── installer.test.ts │ ├── installer.ts │ └── tools.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /lib 2 | node_module 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/update-settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/.github/workflows/update-settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | yarn-error.log 4 | /.tmp 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /.vim/coc-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/.vim/coc-settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/package.json -------------------------------------------------------------------------------- /scripts/nvim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/scripts/nvim.sh -------------------------------------------------------------------------------- /scripts/update-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/scripts/update-settings.js -------------------------------------------------------------------------------- /src/__mocks__/coc.nvim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/__mocks__/coc.nvim.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/utils/config.ts -------------------------------------------------------------------------------- /src/utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/utils/db.ts -------------------------------------------------------------------------------- /src/utils/installer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/utils/installer.test.ts -------------------------------------------------------------------------------- /src/utils/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/utils/installer.ts -------------------------------------------------------------------------------- /src/utils/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/src/utils/tools.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josa42/coc-lua/HEAD/tsconfig.json --------------------------------------------------------------------------------