Bindings to Vim objects, bindings to Vim channel commands, and a way to interact with Vim using Rust.
Aims to be able to eventually write standard plugins in Rust, and potentially services for Vim in Rust using channels.
Add this line to your dependencies section of your Cargo.toml
file.
vii = "0.0.4"
Current interface is highly unstable.
Working with Vim data types.
``` rust use vii::DataType;
// Using a Vim data type let vimfloat = DataType::Float(3.14); // Serializing for transmission to Vim let serializedfloat = vimfloat.tostring(); // "3.14"
let vimstring = DataType::String("Hello World!".tostring()); let serializedstring = vimstring.to_string(); // "\"Hello World!\"" ```
List of data type support.
HashMap<String, String>
Working with Vim channels (see :help channel.txt
in Vim).
Note: This is a low-level API. The eventual, high-level API should look like let expr = Expr::from("line('$')");
.
``` rust use vii::channel::{ ChannelCommand, Call, Expression, };
// Number of Lines in Current Buffer // ["expr","line('$')"] let expression = ChannelCommand::Expr( Expression { expression: "line('$')".to_string(), }, None, );
// Number of Lines in Current Buffer // ["call", "line", ["$"]] let call = ChannelCommand::Call( Call { function: "line".to_string(), args: vec![DataType::String("$")], }, None, );
println!("{}", expression.tostring()); // ["expr","line('$')"] println!("{}", call.tostring()); // ["call", "line", ["$"]] ```
If there are any features you would like added, found any potential bugs, or have any questions, then feel free to create an issue.
cargo test
Unittests are in the same file, next to the units they are testing (bottom). Integration tests are in /tests/
.