factor new Application with file arg to function

This commit is contained in:
Skyler Hawthorne 2022-06-10 23:35:34 -04:00
parent 65bf6836b7
commit 665286c199
5 changed files with 21 additions and 56 deletions

View file

@ -1,4 +1,4 @@
use std::{io::Write, time::Duration};
use std::{io::Write, path::PathBuf, time::Duration};
use anyhow::bail;
use crossterm::event::{Event, KeyEvent};
@ -199,3 +199,15 @@ pub fn new_readonly_tempfile() -> anyhow::Result<NamedTempFile> {
file.as_file_mut().set_permissions(perms)?;
Ok(file)
}
/// Creates a new Application with default config that opens the given file
/// path
pub fn app_with_file<P: Into<PathBuf>>(path: P) -> anyhow::Result<Application> {
Application::new(
Args {
files: vec![(path.into(), helix_core::Position::default())],
..Default::default()
},
Config::default(),
)
}