mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
3bedbd0669
# Description Partial fix for #14043 - If `$env.config.use_ansi_coloring` is `false`, strip the ansi coloring before displaying. # User-Facing Changes Bug fix # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - 🟢 `toolkit test` - 🟢 `toolkit test stdlib` # After Submitting N/A
40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
use std/dt [datetime-diff, pretty-print-duration]
|
|
|
|
# Print a banner for nushell with information about the project
|
|
export def banner [] {
|
|
let dt = (datetime-diff (date now) 2019-05-10T09:59:12-07:00)
|
|
|
|
let banner_msg = $"(ansi green) __ ,(ansi reset)
|
|
(ansi green) .--\(\)°'.' (ansi reset)Welcome to (ansi green)Nushell(ansi reset),
|
|
(ansi green)'|, . ,' (ansi reset)based on the (ansi green)nu(ansi reset) language,
|
|
(ansi green) !_-\(_\\ (ansi reset)where all data is structured!
|
|
|
|
Please join our (ansi purple)Discord(ansi reset) community at (ansi purple)https://discord.gg/NtAbbGn(ansi reset)
|
|
Our (ansi green_bold)GitHub(ansi reset) repository is at (ansi green_bold)https://github.com/nushell/nushell(ansi reset)
|
|
Our (ansi green)Documentation(ansi reset) is located at (ansi green)https://nushell.sh(ansi reset)
|
|
(ansi cyan)Tweet(ansi reset) us at (ansi cyan_bold)@nu_shell(ansi reset)
|
|
Learn how to remove this at: (ansi green)https://nushell.sh/book/configuration.html#remove-welcome-message(ansi reset)
|
|
|
|
It's been this long since (ansi green)Nushell(ansi reset)'s first commit:
|
|
(pretty-print-duration $dt)
|
|
|
|
Startup Time: ($nu.startup-time)
|
|
"
|
|
|
|
match $env.config?.use_ansi_coloring? {
|
|
false => { $banner_msg | ansi strip }
|
|
_ => $banner_msg
|
|
}
|
|
}
|
|
|
|
# Return the current working directory
|
|
export def pwd [
|
|
--physical (-P) # resolve symbolic links
|
|
] {
|
|
if $physical {
|
|
$env.PWD | path expand
|
|
} else {
|
|
$env.PWD
|
|
}
|
|
}
|