vhakulinen / neovim-java-client

Java wrapper for Neovim Message Pack API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Neovim Java Client

Join the chat at https://gitter.im/fdinoff/neovim-java-client Build Status

Wrapper around the neovim message pack api to talk to a neovim process. This is a WIP lots of functions do not have wrappers yet.

Usage

Standard usage would be to create a connection to a neovim instance. There are two provided connection types.

  • SocketNeovim
    • Connection to a socket of the form address:port.
    • This is NOT a connection to a UNIX socket.
MessagePackRPC.Connection connection = new SocketNeovim("127.0.0.1:6666");
  • EmbeddedNeovim
    • Connection to an embedded neovim launched with the --embed flag
MessagePackRPC.Connection connection = new EmbeddedNeovim("nvim");

Once you have a connection you can create a Neovim instance that will talk to the connected neovim instance.

try (Neovim neovim = Neovim.connectTo(connection)) {
    <use neovim>
}

Notes

UNIX domain sockets are not supported out of the box by this library. These sockets are not supported by the SDK and require JNI code to use. There are libraries that provide this support and you can wrap the resulting socket in a MessagePackRPC.Connection

About

Java wrapper for Neovim Message Pack API


Languages

Language:Java 100.0%