Macro dbg

Source
macro_rules! dbg {
    () => { ... };
    ($val:expr $(,)?) => { ... };
    ($($val:expr),+ $(,)?) => { ... };
}
Expand description

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