feat: add a hidden _cmdline_offset field to WindowOpts on Nightly (#245)

Upstream:
08c484f2ca
This commit is contained in:
Riccardo Mazzarini 2025-05-23 17:09:42 +02:00 committed by GitHub
parent 02f26cbcde
commit 68cfa21584
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -308,6 +308,9 @@ pub struct WindowOpts {
noautocmd: Boolean,
fixed: Boolean,
hide: Boolean,
#[cfg(feature = "neovim-nightly")] // Only on Nightly.
#[builder(skip)]
_cmdline_offset: Integer,
}
impl From<&WindowConfig> for WindowOpts {