Macro dbg
macro_rules! dbg {
() => { ... };
($val:expr $(,)?) => { ... };
($($val:expr),+ $(,)?) => { ... };
}Expand description
Same as std::dbg! but writes to the Neovim message area instead of
stdout.
macro_rules! dbg {
() => { ... };
($val:expr $(,)?) => { ... };
($($val:expr),+ $(,)?) => { ... };
}Same as std::dbg! but writes to the Neovim message area instead of
stdout.