Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 37 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions crates/moon-core/src/config/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -826,6 +826,16 @@ pub struct WindowLayout {
/// filter preference must never discard the complete window layout.
#[serde(default, deserialize_with = "de_lenient_map")]
pub report_filters: HashMap<String, ReportFilterPrefs>,
/// Core Status presentation choice per host context: `core-status-mode:dock` /
/// `core-status-mode:win`.
///
/// Keyed like its neighbours above, through `table_persist::ctx_id`, so a docked tab and a
/// detached window remember their own mode independently. The value is an OPAQUE stable code
/// owned by the panel in `moon-ui-gpui`; this crate deliberately does not hold the vocabulary,
/// exactly as it does not hold [`ReportFilterPrefs`]'s. No entry, or a code this build does not
/// know, leaves the panel's own first-run default standing rather than failing the load.
#[serde(default, deserialize_with = "de_lenient_map")]
pub core_status_mode: HashMap<String, String>,
/// One-shot Report column migrations already applied to [`Self::table_visible_columns`].
///
/// A saved visible-column set is an EXPLICIT list, so a column added later is simply absent
Expand Down
Loading