├── .gitignore ├── .npmignore ├── Readme.md ├── bin ├── observer └── select ├── lib ├── index.d.ts └── index.js ├── mac ├── observer.m └── select.m ├── package.json ├── src └── index.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | lib 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/.npmignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/Readme.md -------------------------------------------------------------------------------- /bin/observer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/bin/observer -------------------------------------------------------------------------------- /bin/select: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/bin/select -------------------------------------------------------------------------------- /lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/lib/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/lib/index.js -------------------------------------------------------------------------------- /mac/observer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/mac/observer.m -------------------------------------------------------------------------------- /mac/select.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/mac/select.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoclide/coc-imselect/HEAD/yarn.lock --------------------------------------------------------------------------------