mirror of
https://github.com/helix-editor/helix.git
synced 2025-01-19 21:47:07 +04:00
Set the selection point of the first file correctly (#3073)
This commit is contained in:
parent
e8214fb1e6
commit
55b45ec4a4
@ -151,10 +151,7 @@ pub fn new(args: Args, config: Config) -> Result<Self, Error> {
|
||||
compositor.push(Box::new(overlayed(picker)));
|
||||
} else {
|
||||
let nr_of_files = args.files.len();
|
||||
editor.open(first, Action::VerticalSplit)?;
|
||||
// Because the line above already opens the first file, we can
|
||||
// simply skip opening it a second time by using .skip(1) here.
|
||||
for (file, pos) in args.files.into_iter().skip(1) {
|
||||
for (i, (file, pos)) in args.files.into_iter().enumerate() {
|
||||
if file.is_dir() {
|
||||
return Err(anyhow::anyhow!(
|
||||
"expected a path to file, found a directory. (to open a directory pass it as first argument)"
|
||||
@ -166,6 +163,7 @@ pub fn new(args: Args, config: Config) -> Result<Self, Error> {
|
||||
// option. If neither of those two arguments are passed
|
||||
// in, just load the files normally.
|
||||
let action = match args.split {
|
||||
_ if i == 0 => Action::VerticalSplit,
|
||||
Some(Layout::Vertical) => Action::VerticalSplit,
|
||||
Some(Layout::Horizontal) => Action::HorizontalSplit,
|
||||
None => Action::Load,
|
||||
|
Loading…
Reference in New Issue
Block a user