forked from extern/nushell
run rustfmt on match plugin
This commit is contained in:
parent
be51aad9ad
commit
36f2b09cad
@ -1,6 +1,6 @@
|
|||||||
use nu::{
|
use nu::{
|
||||||
serve_plugin, CallInfo, Plugin, Primitive, ReturnSuccess, ReturnValue, ShellError,
|
serve_plugin, CallInfo, Plugin, Primitive, ReturnSuccess, ReturnValue, ShellError, Signature,
|
||||||
Signature, SyntaxShape, Tagged, Value,
|
SyntaxShape, Tagged, Value,
|
||||||
};
|
};
|
||||||
use regex::Regex;
|
use regex::Regex;
|
||||||
|
|
||||||
@ -37,7 +37,9 @@ impl Plugin for Match {
|
|||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ShellError::string(format!(
|
return Err(ShellError::string(format!(
|
||||||
"Unrecognized type in params: {:?}", args[0])));
|
"Unrecognized type in params: {:?}",
|
||||||
|
args[0]
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
match &args[1] {
|
match &args[1] {
|
||||||
@ -48,8 +50,10 @@ impl Plugin for Match {
|
|||||||
self.regex = Regex::new(s).unwrap();
|
self.regex = Regex::new(s).unwrap();
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ShellError::string(format!(
|
return Err(ShellError::string(format!(
|
||||||
"Unrecognized type in params: {:?}", args[0])));
|
"Unrecognized type in params: {:?}",
|
||||||
|
args[0]
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -73,17 +77,20 @@ impl Plugin for Match {
|
|||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ShellError::string(format!(
|
return Err(ShellError::string(format!(
|
||||||
"value is not a string! {:?}", &val)));
|
"value is not a string! {:?}",
|
||||||
|
&val
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return Err(ShellError::string(format!(
|
return Err(ShellError::string(format!(
|
||||||
"column not in row! {:?} {:?}", &self.column, dict)));
|
"column not in row! {:?} {:?}",
|
||||||
|
&self.column, dict
|
||||||
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ShellError::string(format!(
|
return Err(ShellError::string(format!("Not a row! {:?}", &input)));
|
||||||
"Not a row! {:?}", &input)));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if flag {
|
if flag {
|
||||||
|
Loading…
Reference in New Issue
Block a user