mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 05:51:14 +00:00
editor: Fix tab tooltips not showing file path for remote files (#43359)
Closes #42344 Release Notes: - Fixed editor tab tooltips not showing file path for remote files Here's the before/after, tested both local and remote: https://github.com/user-attachments/assets/2768a0f8-e35b-4eff-aa95-d0decb51ec78
This commit is contained in:
parent
06e03a41aa
commit
1f03fc62db
1 changed files with 14 additions and 12 deletions
|
|
@ -23,7 +23,7 @@ use language::{
|
|||
use lsp::DiagnosticSeverity;
|
||||
use multi_buffer::MultiBufferOffset;
|
||||
use project::{
|
||||
Project, ProjectItem as _, ProjectPath, lsp_store::FormatTrigger,
|
||||
File, Project, ProjectItem as _, ProjectPath, lsp_store::FormatTrigger,
|
||||
project_settings::ProjectSettings, search::SearchQuery,
|
||||
};
|
||||
use rpc::proto::{self, update_view};
|
||||
|
|
@ -645,18 +645,20 @@ impl Item for Editor {
|
|||
}
|
||||
|
||||
fn tab_tooltip_text(&self, cx: &App) -> Option<SharedString> {
|
||||
let file_path = self
|
||||
.buffer()
|
||||
self.buffer()
|
||||
.read(cx)
|
||||
.as_singleton()?
|
||||
.read(cx)
|
||||
.file()
|
||||
.and_then(|f| f.as_local())?
|
||||
.abs_path(cx);
|
||||
|
||||
let file_path = file_path.compact().to_string_lossy().into_owned();
|
||||
|
||||
Some(file_path.into())
|
||||
.as_singleton()
|
||||
.and_then(|buffer| buffer.read(cx).file())
|
||||
.and_then(|file| File::from_dyn(Some(file)))
|
||||
.map(|file| {
|
||||
file.worktree
|
||||
.read(cx)
|
||||
.absolutize(&file.path)
|
||||
.compact()
|
||||
.to_string_lossy()
|
||||
.into_owned()
|
||||
.into()
|
||||
})
|
||||
}
|
||||
|
||||
fn telemetry_event_text(&self) -> Option<&'static str> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue