├── .ci ├── before_cache.sh └── script.sh ├── .gitignore ├── .luacheckrc ├── .travis.yml ├── .ycm_extra_conf.py ├── LICENSE ├── Makefile ├── README.md ├── nvim-client-0.2.4-1.rockspec ├── nvim ├── _compat.lua ├── child_process_stream.lua ├── msgpack_rpc_stream.lua ├── native.c ├── session.lua ├── socket_stream.lua ├── stdio_stream.lua └── tcp_stream.lua └── test ├── session_spec.lua └── stdio_fixture.lua /.ci/before_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/.ci/before_cache.sh -------------------------------------------------------------------------------- /.ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/.ci/script.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/README.md -------------------------------------------------------------------------------- /nvim-client-0.2.4-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim-client-0.2.4-1.rockspec -------------------------------------------------------------------------------- /nvim/_compat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/_compat.lua -------------------------------------------------------------------------------- /nvim/child_process_stream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/child_process_stream.lua -------------------------------------------------------------------------------- /nvim/msgpack_rpc_stream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/msgpack_rpc_stream.lua -------------------------------------------------------------------------------- /nvim/native.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/native.c -------------------------------------------------------------------------------- /nvim/session.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/session.lua -------------------------------------------------------------------------------- /nvim/socket_stream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/socket_stream.lua -------------------------------------------------------------------------------- /nvim/stdio_stream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/stdio_stream.lua -------------------------------------------------------------------------------- /nvim/tcp_stream.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/nvim/tcp_stream.lua -------------------------------------------------------------------------------- /test/session_spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/test/session_spec.lua -------------------------------------------------------------------------------- /test/stdio_fixture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neovim/lua-client/HEAD/test/stdio_fixture.lua --------------------------------------------------------------------------------