Macro print

Source
macro_rules! print {
    ($($arg:tt)*) => { ... };
}
Expand description

Same as std::print! but writes to the Neovim message area instead of stdout.

§Examples

use nvim_oxi as nvim;

nvim::print!("Goodbye {}..", "Earth");
nvim::print!("Hello {planet}!", planet = "Mars");