mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-27 04:44:30 +00:00
Do not allow cmd+click in invalid inlay context
This commit is contained in:
parent
693e91f335
commit
81e70905bb
2 changed files with 6 additions and 4 deletions
|
@ -2755,7 +2755,7 @@ impl PointForPosition {
|
|||
}
|
||||
}
|
||||
|
||||
fn as_valid(&self) -> Option<DisplayPoint> {
|
||||
pub fn as_valid(&self) -> Option<DisplayPoint> {
|
||||
if self.previous_valid == self.exact_unclipped && self.next_valid == self.exact_unclipped {
|
||||
Some(self.previous_valid)
|
||||
} else {
|
||||
|
|
|
@ -596,9 +596,11 @@ fn go_to_fetched_definition_of_kind(
|
|||
cx,
|
||||
);
|
||||
|
||||
match kind {
|
||||
LinkDefinitionKind::Symbol => editor.go_to_definition(&Default::default(), cx),
|
||||
LinkDefinitionKind::Type => editor.go_to_type_definition(&Default::default(), cx),
|
||||
if point.as_valid().is_some() {
|
||||
match kind {
|
||||
LinkDefinitionKind::Symbol => editor.go_to_definition(&Default::default(), cx),
|
||||
LinkDefinitionKind::Type => editor.go_to_type_definition(&Default::default(), cx),
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue