refactoring: Use helper instead of adjusting selection manually (#15262)

I added `newest_adjusted` recently and now just bumped into the old code
that didn't use it.

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2024-07-26 11:12:33 +02:00 committed by GitHub
parent 856d9632e4
commit 18daf17d0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@ use crate::Editor;
use gpui::{Task as AsyncTask, WindowContext};
use project::Location;
use task::{TaskContext, TaskVariables, VariableName};
use text::{Point, ToOffset, ToPoint};
use text::{ToOffset, ToPoint};
use workspace::Workspace;
fn task_context_with_editor(
@ -14,11 +14,7 @@ fn task_context_with_editor(
return AsyncTask::ready(None);
};
let (selection, buffer, editor_snapshot) = {
let mut selection = editor.selections.newest::<Point>(cx);
if editor.selections.line_mode {
selection.start = Point::new(selection.start.row, 0);
selection.end = Point::new(selection.end.row + 1, 0);
}
let selection = editor.selections.newest_adjusted(cx);
let Some((buffer, _, _)) = editor
.buffer()
.read(cx)