mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-28 09:54:33 +00:00
Show correct line number for entry placeholders in /search
(#13151)
Release Notes: - N/A
This commit is contained in:
parent
d6d56191da
commit
d95c424d18
1 changed files with 1 additions and 1 deletions
|
@ -159,7 +159,7 @@ impl SlashCommand for SearchSlashCommand {
|
|||
id,
|
||||
path: Some(full_path.clone()),
|
||||
is_directory: false,
|
||||
line_range: Some(start_row..end_row),
|
||||
line_range: Some(start_row + 1..end_row + 1),
|
||||
unfold,
|
||||
}
|
||||
.into_any_element()
|
||||
|
|
Loading…
Reference in a new issue