mirror of
https://github.com/nushell/nushell.git
synced 2025-04-05 08:09:20 +02:00
commit
d26e938436
@ -128,7 +128,7 @@ pretty_assertions = "0.6.1"
|
|||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
toml = "0.5.5"
|
toml = "0.5.5"
|
||||||
serde = { version = "1.0.102", features = ["derive"] }
|
serde = { version = "1.0.103", features = ["derive"] }
|
||||||
nu-build = { version = "0.1.0", path = "./crates/nu-build" }
|
nu-build = { version = "0.1.0", path = "./crates/nu-build" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
|
@ -32,7 +32,9 @@ impl Plugin for TextView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn sink(&mut self, _call_info: CallInfo, input: Vec<Value>) {
|
fn sink(&mut self, _call_info: CallInfo, input: Vec<Value>) {
|
||||||
view_text_value(&input[0]);
|
if !input.is_empty() {
|
||||||
|
view_text_value(&input[0]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user