mirror of
https://github.com/nushell/nushell.git
synced 2025-01-21 05:40:59 +01:00
fmt code
This commit is contained in:
parent
a9f31dd95c
commit
c5aa428c9f
@ -13,7 +13,9 @@ use nu_protocol::{Category, Example, ListStream, PipelineData, RawStream, Span,
|
||||
use itertools::Itertools;
|
||||
|
||||
use nu_engine::CallExt;
|
||||
use nu_system::external_process_setup::{reset_foreground_id, set_foreground, prepare_to_foreground};
|
||||
use nu_system::external_process_setup::{
|
||||
prepare_to_foreground, reset_foreground_id, set_foreground,
|
||||
};
|
||||
use pathdiff::diff_paths;
|
||||
use regex::Regex;
|
||||
|
||||
|
@ -1,15 +1,15 @@
|
||||
mod foreground;
|
||||
#[cfg(any(target_os = "android", target_os = "linux"))]
|
||||
mod linux;
|
||||
#[cfg(target_os = "macos")]
|
||||
mod macos;
|
||||
#[cfg(target_os = "windows")]
|
||||
mod windows;
|
||||
mod foreground;
|
||||
|
||||
pub use self::foreground::external_process_setup;
|
||||
#[cfg(any(target_os = "android", target_os = "linux"))]
|
||||
pub use self::linux::*;
|
||||
#[cfg(target_os = "macos")]
|
||||
pub use self::macos::*;
|
||||
#[cfg(target_os = "windows")]
|
||||
pub use self::windows::*;
|
||||
pub use self::foreground::external_process_setup;
|
||||
|
Loading…
Reference in New Issue
Block a user