nvim_oxi_api/opts/
exec.rs

1/// Option passed to [`exec2()`][crate::exec2].
2#[derive(Clone, Debug, Default, macros::OptsBuilder)]
3#[repr(C)]
4pub struct ExecOpts {
5    /// Whether to capture and return all (non-error, non-shell |:!|) output.
6    #[builder(argtype = "bool")]
7    output: types::Boolean,
8}