Initial commit

This commit is contained in:
Ryan Ward
2026-04-29 10:43:20 -05:00
parent b7b327510d
commit d8d4ac9e5d
28 changed files with 211 additions and 83 deletions
+3 -3
View File
@@ -6348,7 +6348,7 @@ impl Workspace {
}
}
/// Writes the default tab config template to an unused path in `~/.warp/tab_configs/`
/// Writes the default tab config template to an unused path in `~/.warp-core/tab_configs/`
/// and opens it respecting the user's configured editor setting.
#[cfg(feature = "local_fs")]
fn create_and_open_new_tab_config(&mut self, ctx: &mut ViewContext<Self>) {
@@ -6387,7 +6387,7 @@ impl Workspace {
}
/// Snapshots the given tab's pane layout and writes it as a new tab config
/// TOML to `~/.warp/tab_configs/`, then opens the file in the user's editor.
/// TOML to `~/.warp-core/tab_configs/`, then opens the file in the user's editor.
#[cfg(feature = "local_fs")]
fn save_current_tab_as_new_config(&mut self, tab_index: usize, ctx: &mut ViewContext<Self>) {
use crate::tab_configs::session_config::{tab_config_from_pane_snapshot, write_tab_config};
@@ -9234,7 +9234,7 @@ impl Workspace {
}
/// Opens a worktree in the given repo using the default worktree tab config,
/// saving the materialized config to `~/.warp/tab_configs/` first.
/// saving the materialized config to `~/.warp-core/tab_configs/` first.
/// The branch name is auto-generated.
#[cfg(feature = "local_fs")]
fn open_worktree_in_repo(&mut self, repo_path: String, ctx: &mut ViewContext<Self>) {