mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
commit
5c5082bbde
@ -74,7 +74,7 @@ pub async fn cli() -> Result<(), Box<dyn Error>> {
|
||||
|
||||
context.add_sinks(vec![
|
||||
sink("autoview", autoview::autoview),
|
||||
sink("clipboard", clipboard::clipboard),
|
||||
sink("clip", clip::clip),
|
||||
sink("tree", tree::tree),
|
||||
]);
|
||||
}
|
||||
|
@ -2,7 +2,7 @@ crate mod args;
|
||||
crate mod autoview;
|
||||
crate mod cd;
|
||||
crate mod classified;
|
||||
crate mod clipboard;
|
||||
crate mod clip;
|
||||
crate mod command;
|
||||
crate mod config;
|
||||
crate mod first;
|
||||
|
@ -2,7 +2,7 @@ use crate::commands::command::SinkCommandArgs;
|
||||
use crate::errors::ShellError;
|
||||
use clipboard::{ClipboardContext, ClipboardProvider};
|
||||
|
||||
pub fn clipboard(args: SinkCommandArgs) -> Result<(), ShellError> {
|
||||
pub fn clip(args: SinkCommandArgs) -> Result<(), ShellError> {
|
||||
let mut clip_context: ClipboardContext = ClipboardProvider::new().unwrap();
|
||||
let mut new_copy_data = String::new();
|
||||
if args.input.len() > 0 {
|
Loading…
Reference in New Issue
Block a user