pub struct CreateTerminalOptions {
pub cwd: Option<String>,
pub direction: Option<String>,
pub ratio: Option<f32>,
pub focus: Option<bool>,
pub persistent: Option<bool>,
pub window_id: Option<WindowId>,
}Expand description
Options for createTerminal
Fields§
§cwd: Option<String>Working directory for the terminal (defaults to editor cwd)
direction: Option<String>Split direction: “horizontal” or “vertical” (default: “vertical”)
ratio: Option<f32>Split ratio 0.0-1.0 (default: 0.5)
focus: Option<bool>Whether to focus the new terminal split (default: true)
persistent: Option<bool>Whether this terminal is part of the user’s persisted workspace.
Defaults to false for plugin-created terminals — they are typically
one-off tool UIs (rebuilds, exec shells, build output) and should
start with empty scrollback on each invocation. Set to true only
when the plugin owns a terminal that the user should see restored
across editor restarts.
window_id: Option<WindowId>Optional session id to attach the new terminal buffer to. Defaults to the active session at creation time. Setting this lets Orchestrator and similar plugins spawn a terminal into an inactive session (e.g. an agent in a worktree the user hasn’t dived into yet). The terminal’s split is created in that session’s stashed split tree; the buffer is attached to the target session’s membership set rather than the active one’s.
Trait Implementations§
Source§impl Clone for CreateTerminalOptions
impl Clone for CreateTerminalOptions
Source§fn clone(&self) -> CreateTerminalOptions
fn clone(&self) -> CreateTerminalOptions
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 CreateTerminalOptions
impl Debug for CreateTerminalOptions
Source§impl<'de> Deserialize<'de> for CreateTerminalOptions
impl<'de> Deserialize<'de> for CreateTerminalOptions
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 Serialize for CreateTerminalOptions
impl Serialize for CreateTerminalOptions
Source§impl TS for CreateTerminalOptions
impl TS for CreateTerminalOptions
Source§type WithoutGenerics = CreateTerminalOptions
type WithoutGenerics = CreateTerminalOptions
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 = CreateTerminalOptions
type OptionInnerType = CreateTerminalOptions
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