pub struct CreateVirtualBufferOptions {
pub name: String,
pub mode: Option<String>,
pub read_only: Option<bool>,
pub show_line_numbers: Option<bool>,
pub show_cursors: Option<bool>,
pub editing_disabled: Option<bool>,
pub hidden_from_tabs: Option<bool>,
pub entries: Option<Vec<JsTextPropertyEntry>>,
pub initial_cursor_line: Option<u32>,
}Expand description
Options for createVirtualBuffer
Fields§
§name: StringBuffer name (displayed in tabs/title)
mode: Option<String>Mode for keybindings (e.g., “git-log”, “search-results”)
read_only: Option<bool>Whether buffer is read-only (default: false)
show_line_numbers: Option<bool>Show line numbers in gutter (default: false)
show_cursors: Option<bool>Show cursor (default: true)
editing_disabled: Option<bool>Disable text editing (default: false)
Hide from tab bar (default: false)
entries: Option<Vec<JsTextPropertyEntry>>Initial content entries with optional properties
initial_cursor_line: Option<u32>Initial cursor line (0-indexed). Applied to the new buffer before
it becomes the active buffer, so plugins that want to land the
cursor on a specific line don’t have to chase a race against user
input between “buffer becomes active” and a follow-up
setBufferCursor. Using a line index (rather than a byte offset)
keeps the byte-math on the host side where the buffer content is
already in UTF-8 bytes, avoiding the UTF-16-vs-UTF-8 mismatch a
plugin would otherwise have to navigate.
Trait Implementations§
Source§impl Clone for CreateVirtualBufferOptions
impl Clone for CreateVirtualBufferOptions
Source§fn clone(&self) -> CreateVirtualBufferOptions
fn clone(&self) -> CreateVirtualBufferOptions
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CreateVirtualBufferOptions
impl Debug for CreateVirtualBufferOptions
Source§impl<'de> Deserialize<'de> for CreateVirtualBufferOptions
impl<'de> Deserialize<'de> for CreateVirtualBufferOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl TS for CreateVirtualBufferOptions
impl TS for CreateVirtualBufferOptions
Source§type WithoutGenerics = CreateVirtualBufferOptions
type WithoutGenerics = CreateVirtualBufferOptions
WithoutGenerics should just be Self.
If the type does have generic parameters, then all generic parameters must be replaced with
a dummy type, e.g ts_rs::Dummy or (). The only requirement for these dummy types is that
EXPORT_TO must be None. Read moreSource§type OptionInnerType = CreateVirtualBufferOptions
type OptionInnerType = CreateVirtualBufferOptions
std::option::Option<T>, then this associated type is set to T.
All other implementations of TS should set this type to Self instead.Source§fn docs() -> Option<String>
fn docs() -> Option<String>
TS is derived, docs are
automatically read from your doc comments or #[doc = ".."] attributesSource§fn decl_concrete(cfg: &Config) -> String
fn decl_concrete(cfg: &Config) -> String
TS::decl().
If this type is not generic, then this function is equivalent to TS::decl().Source§fn decl(cfg: &Config) -> String
fn decl(cfg: &Config) -> String
type User = { user_id: number, ... }.
This function will panic if the type has no declaration. Read moreSource§fn inline(cfg: &Config) -> String
fn inline(cfg: &Config) -> String
{ user_id: number }.
This function will panic if the type cannot be inlined.Source§fn inline_flattened(cfg: &Config) -> String
fn inline_flattened(cfg: &Config) -> String
Source§fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_generics(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn output_path() -> Option<PathBuf>
fn output_path() -> Option<PathBuf>
T should be exported, relative to the output directory.
The returned path does not include any base directory. Read moreSource§fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
fn visit_dependencies(v: &mut impl TypeVisitor)where
Self: 'static,
Source§fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
fn dependencies(cfg: &Config) -> Vec<Dependency>where
Self: 'static,
Source§fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export_all. Read moreSource§fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
fn export_all(cfg: &Config) -> Result<(), ExportError>where
Self: 'static,
TS::export. Read more