Fix scroll to top on multibuffer save (#24885)
Co-Authored-By: Cole <cole@zed.dev> Closes #ISSUE Release Notes: - N/A --------- Co-authored-by: Cole <cole@zed.dev>
This commit is contained in:
@@ -149,11 +149,14 @@ impl MultiBufferDiffHunk {
|
||||
}
|
||||
|
||||
#[derive(PartialEq, Eq, Ord, PartialOrd, Clone, Hash, Debug)]
|
||||
pub struct PathKey(String);
|
||||
pub struct PathKey {
|
||||
namespace: &'static str,
|
||||
path: Arc<Path>,
|
||||
}
|
||||
|
||||
impl PathKey {
|
||||
pub fn namespaced(namespace: &str, path: &Path) -> Self {
|
||||
Self(format!("{}/{}", namespace, path.to_string_lossy()))
|
||||
pub fn namespaced(namespace: &'static str, path: Arc<Path>) -> Self {
|
||||
Self { namespace, path }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user