We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a43537 commit 0babfd0Copy full SHA for 0babfd0
src/lib.rs
@@ -51,7 +51,7 @@ use std::process::ExitStatus;
51
pub fn that<T: AsRef<OsStr> + Sized>(path: T) -> io::Result<ExitStatus> {
52
let path_ref = path.as_ref();
53
let mut last_err: io::Error = io::Error::from_raw_os_error(0);
54
- for program in &["wslopen", "xdg-open", "gnome-open", "kde-open"] {
+ for program in &["xdg-open", "gnome-open", "kde-open", "wslview"] {
55
match Command::new(program)
56
.stdout(Stdio::null())
57
.stderr(Stdio::null())
0 commit comments