Set CWD when editor is started with a directory (#849)
This commit is contained in:
parent
4d07eaa48b
commit
c71b49497d
1 changed files with 1 additions and 0 deletions
|
@ -100,6 +100,7 @@ impl Application {
|
||||||
if !args.files.is_empty() {
|
if !args.files.is_empty() {
|
||||||
let first = &args.files[0]; // we know it's not empty
|
let first = &args.files[0]; // we know it's not empty
|
||||||
if first.is_dir() {
|
if first.is_dir() {
|
||||||
|
std::env::set_current_dir(&first)?;
|
||||||
editor.new_file(Action::VerticalSplit);
|
editor.new_file(Action::VerticalSplit);
|
||||||
compositor.push(Box::new(ui::file_picker(first.clone())));
|
compositor.push(Box::new(ui::file_picker(first.clone())));
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Reference in a new issue