mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-11 12:46:07 +00:00
Merge pull request #1306 from zed-industries/fix-open-pane
Fixed terminal clone on split
This commit is contained in:
commit
49859d8f94
1 changed files with 10 additions and 1 deletions
|
@ -91,6 +91,7 @@ pub struct Terminal {
|
||||||
has_new_content: bool,
|
has_new_content: bool,
|
||||||
has_bell: bool, //Currently using iTerm bell, show bell emoji in tab until input is received
|
has_bell: bool, //Currently using iTerm bell, show bell emoji in tab until input is received
|
||||||
cur_size: SizeInfo,
|
cur_size: SizeInfo,
|
||||||
|
associated_directory: Option<PathBuf>,
|
||||||
}
|
}
|
||||||
|
|
||||||
///Upward flowing events, for changing the title and such
|
///Upward flowing events, for changing the title and such
|
||||||
|
@ -126,7 +127,7 @@ impl Terminal {
|
||||||
|
|
||||||
let pty_config = PtyConfig {
|
let pty_config = PtyConfig {
|
||||||
shell: None,
|
shell: None,
|
||||||
working_directory,
|
working_directory: working_directory.clone(),
|
||||||
hold: false,
|
hold: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -173,6 +174,7 @@ impl Terminal {
|
||||||
has_new_content: false,
|
has_new_content: false,
|
||||||
has_bell: false,
|
has_bell: false,
|
||||||
cur_size: size_info,
|
cur_size: size_info,
|
||||||
|
associated_directory: working_directory,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -410,6 +412,13 @@ impl Item for Terminal {
|
||||||
.boxed()
|
.boxed()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn clone_on_split(&self, cx: &mut ViewContext<Self>) -> Option<Self> {
|
||||||
|
//From what I can tell, there's no way to tell the current working
|
||||||
|
//Directory of the terminal from outside the terminal. There might be
|
||||||
|
//solutions to this, but they are non-trivial and require more IPC
|
||||||
|
Some(Terminal::new(cx, self.associated_directory.clone()))
|
||||||
|
}
|
||||||
|
|
||||||
fn project_path(&self, _cx: &gpui::AppContext) -> Option<ProjectPath> {
|
fn project_path(&self, _cx: &gpui::AppContext) -> Option<ProjectPath> {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue