1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
//! Set default ANSI styles for writers and handles.
//!
//! It should be noted that the `Writer`s in this module are *not*
//! required to output ANSI styles. Printing styled output can be done with a
//! simple `println!`, for example:
//!
//! ```
//! use ansiconst::styled;
//!
//! // Note this uses standard println! that writes to std::io::Stdout
//! // (i.e. no ANSI-specific writer involved)
//! println!("{}", styled!(Red, Bold, "Hello world!"));
//! ```
//!
//! The purpose of this module is to provide support for:
//!
//! 1. Detecting the ANSI-styling capability of a `Writer` or `Stream` at runtime.
//! 2. Configuring a `Writer` or `Stream` to automatically disable/override nested ANSI
//! styles during writes.
//!
//! The above support is available as follows:
//!
//! - To set the default ANSI style for an existing `Writer`, wrap it in an [`AnsiWriter`].
//! - To set the default ANSI style when printing to `stdout`, `stderr`, use [`ansiout()`]
//! and [`ansierr()`].
//!
//! *Note:* in order to configure the default ANSI style, trait [`AnsiWrite`] must be in scope.
//!
//! ### Examples
//!
//! ```
//! // This example assumes no relevant environment variables (FORCE_COLOR, NO_COLOR)
//! // have been set, and this is running on a terminal/tty.
//!
//! use ansiconst::{paintln, io::{ansiout, AnsiWrite}};
//!
//! // Prints "\x1B[35mPurple\x1B[39m\n"
//! paintln!(Purple, "Purple");
//!
//! // Manually set env variable and reset stdout's ANSI style to default
//! std::env::set_var("NO_COLOR", "1");
//! ansiout().auto_ansi();
//!
//! // Prints "Not Purple\n"
//! paintln!(Purple, "Not Purple");
//!
//! // Manually remove env variable and reset stdout's ANSI style to default
//! std::env::remove_var("NO_COLOR");
//! ansiout().auto_ansi();
//!
//! // Prints "\x1B[35mPurple\x1B[39m\n"
//! paintln!(Purple, "Purple");
//!
//! // Manually disable ANSI on stdout
//! ansiout().no_ansi();
//!
//! // Prints "Not Purple\n"
//! paintln!(Purple, "Not Purple");
//!
//! // Manually re-enable ANSI on stdout
//! ansiout().all_ansi();
//!
//! // Prints "\x1B[35mPurple\x1B[39m\n"
//! paintln!(Purple, "Purple");
//! ```
pub use *;
pub use *;
use ;
use crateAnsi;
/// Used to indicate if ANSI styles can/should be written by a `Writer`.
///
/// For example, ANSI codes should likely not be written to a non-terminal/tty.
/// For this reason, a blanket implementation of `AnsiPreference`
/// is provided for all implementors of [`IsTerminal`](io::IsTerminal)s, such
/// that the preferred ANSI style determined by this trait is, in the absence of
/// any relevant environment variables, based on the
/// [`is_terminal`](io::IsTerminal::is_terminal) method.
///
/// See examples in the [module-level documentation](crate::io).
/// A [`Write`](io::Write) that has a default [`Ansi`] style that may be configured.
///
/// The default style may be used to disable or override any ANSI styles nested in
/// the [`Arguments`](std::fmt::Arguments) passed to [`write_fmt()`](io::Write::write_fmt()).
///
/// Automatic configuration of the default [`Ansi`] style is done by calling
/// [`auto_ansi()`](AnsiWrite::auto_ansi).
///
/// See examples in the [module-level documentation](crate::io).