pub async fn new_tcp<A, H>(
    addr: A,
    handler: H
) -> Result<(Neovim<WriteHalf<TcpStream>>, JoinHandle<Result<(), Box<LoopError>>>)> where
    H: Handler<Writer = WriteHalf<TcpStream>>,
    A: ToSocketAddrs, 
This is supported on crate feature use_async-std only.
Expand description

Connect to a neovim instance via tcp