added the 'use_editor' option to enable using vim as a default
This commit is contained in:
parent
206dc672ec
commit
43397e0640
2 changed files with 28 additions and 5 deletions
|
@ -8,6 +8,8 @@ For example, for
|
||||||
[open]
|
[open]
|
||||||
# zero-operand command
|
# zero-operand command
|
||||||
command = atom .
|
command = atom .
|
||||||
|
# use $EDITOR to edit files without specified commands?
|
||||||
|
use_editor = true
|
||||||
|
|
||||||
[.md]
|
[.md]
|
||||||
command = typora
|
command = typora
|
||||||
|
|
23
src/main.rs
23
src/main.rs
|
@ -1,5 +1,5 @@
|
||||||
use std::{
|
use std::{
|
||||||
env::{args, current_dir},
|
env::{args, current_dir, var},
|
||||||
path::Path,
|
path::Path,
|
||||||
process::{Command, exit, Stdio}
|
process::{Command, exit, Stdio}
|
||||||
};
|
};
|
||||||
|
@ -104,12 +104,33 @@ FLAGS:
|
||||||
}
|
}
|
||||||
let i_exe = config.get(ext, "command");
|
let i_exe = config.get(ext, "command");
|
||||||
if i_exe.is_none() {
|
if i_exe.is_none() {
|
||||||
|
let use_editor = config.getbool("open", "use_editor");
|
||||||
|
if use_editor.is_ok() && use_editor.ok().unwrap().unwrap() {
|
||||||
|
let i_editor = var("EDITOR");
|
||||||
|
if i_editor.is_err() {
|
||||||
|
println!("open: encountered an error trying to access $EDITOR");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
let editor = i_editor.ok().unwrap();
|
||||||
|
if editor.is_empty() {
|
||||||
|
println!("open: $EDITOR is not defined.");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
let mut command = Command::new(editor);
|
||||||
|
command.args(vec![i_target]);
|
||||||
|
command.stdout(Stdio::inherit())
|
||||||
|
.stderr(Stdio::inherit())
|
||||||
|
.stdin(Stdio::inherit());
|
||||||
|
command.output().ok();
|
||||||
|
exit(0);
|
||||||
|
} else {
|
||||||
match ext {
|
match ext {
|
||||||
"dir" => println!("open: no command specified for directories."),
|
"dir" => println!("open: no command specified for directories."),
|
||||||
_ => println!("open: no command specified for \"{}\" files.", ext)
|
_ => println!("open: no command specified for \"{}\" files.", ext)
|
||||||
}
|
}
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
let exe = i_exe.unwrap();
|
let exe = i_exe.unwrap();
|
||||||
let mut parts = exe.split(" ");
|
let mut parts = exe.split(" ");
|
||||||
let mut command = Command::new(parts.next().unwrap());
|
let mut command = Command::new(parts.next().unwrap());
|
||||||
|
|
Loading…
Reference in a new issue