cargo-open
cargo-open copied to clipboard
Fails if your $EDITOR has flags, ex: `emacsclient -t`
Since std::process::Command
expects a program, and only a program, in Command::new
.
I don't really want to have to parse args out of $EDITOR myself, it'd be nice if there was a way to do this... need to do research into what the intended behavior of Command
is.