Struct neovim_lib::session::Session [] [src]

pub struct Session {
    // some fields omitted
}

An active Neovim session.

Methods

impl Session
[src]

fn new_tcp(addr: &str) -> Result<Session>

Connect to nvim instance via tcp

fn new_child() -> Result<Session>

Connect to a Neovim instance by spawning a new one.

fn new_child_path(program: &str) -> Result<Session>

Connect to a Neovim instance by spawning a new one

fn set_timeout(&mut self, timeout: Duration)

Set call timeout

fn set_infinity_timeout(&mut self)

fn start_event_loop_cb<F: FnMut(&str, Vec<Value>) + Send + 'static>(&mut self, cb: F)

Start processing rpc response and notifications

fn start_event_loop(&mut self)

Start processing rpc response and notifications

fn call(&mut self, method: &str, args: &Vec<Value>) -> Result<Value, Value>

Sync call. Call can be made only after event loop begin processing

fn take_dispatch_guard(&mut self) -> JoinHandle<()>

Wait dispatch thread to finish.

This can happens in case child process connection is lost for some reason.