feat: passing multile of the same files in the arguments places a cursor at each position (#12192)

Co-authored-by: Nikita Revenco <154856872+NikitaRevenco@users.noreply.github.com>
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
Nikita Revenco 2025-01-23 20:04:02 +00:00 committed by GitHub
parent f70923c448
commit 168b11e091
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 45 additions and 17 deletions

View file

@ -345,7 +345,10 @@ impl AppBuilder {
path: P,
pos: Option<helix_core::Position>,
) -> Self {
self.args.files.push((path.into(), pos.unwrap_or_default()));
self.args
.files
.insert(path.into(), vec![pos.unwrap_or_default()]);
self
}