pub async fn new_path<H, P: AsRef<Path> + Clone>(
path: P,
handler: H
) -> Result<(Neovim<WriteHalf<UnixStream>>, JoinHandle<Result<(), Box<LoopError>>>)> where
H: Handler<Writer = WriteHalf<UnixStream>> + Send + 'static,
This is supported on crate feature
use_async-std
and Unix only.Expand description
Connect to a neovim instance via unix socket by path. This is currently only available on Unix for async-std.