carols10cents / cargo-open

A third-party cargo extension to allow you to open a dependent crate in your $EDITOR
Apache License 2.0
22 stars 5 forks source link

Fails if your $EDITOR has flags, ex: `emacsclient -t` #1

Open carols10cents opened 9 years ago

carols10cents commented 9 years ago

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.