summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2022-09-04 18:44:54 +0200
committerGitHub <noreply@github.com>2022-09-04 18:44:54 +0200
commit6ac5df904b984396d860c0f95d1d80fb18cf7db3 (patch)
tree5ee9e880c808777648931249fb417323d9c64828 /src/main.rs
parent020759e56a49d8afe2ed5ee57fea816e208a2d58 (diff)
refactor: replace `ansi_term` with `nu_ansi_term` (#4339)
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 0e4ba6538..7ffb15887 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -114,7 +114,7 @@ enum Commands {
fn main() {
// Configure the current terminal on windows to support ANSI escape sequences.
#[cfg(windows)]
- let _ = ansi_term::enable_ansi_support();
+ let _ = nu_ansi_term::enable_ansi_support();
logger::init();
init_global_threadpool();