File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
* Add new convenience function ` color_scheme ` which returns a nice ` Dark / Light ` enum.
25
25
* Add support for urxvt's ` rgba: ` color format.
26
26
* Further refined the documentation (more organized terminal list, new terminals tested).
27
- * Improved handling of ambigous color palettes (e.g. when background color is the same as foreground).
27
+ * Improved handling of ambiguous color palettes (e.g. when background color is the same as foreground).
28
28
* Queries are now terminated with ` ST ` (the standard string terminator) instead of ` BEL ` (which is an xterm extension).
29
29
30
30
## 0.3.3
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Colorsaurus sends two escape sequences: `OSC 10` (or `OSC 11`) followed by `DA1`
4
4
` DA1 ` is supported by almost every terminal.
5
5
6
6
Terminals process incoming escape sequences in order.
7
- Therefore if the reponse to ` DA1 ` is seen first, then the terminal does not support ` OSC 10 ` (or ` OSC 11 ` ).
7
+ Therefore if the response to ` DA1 ` is seen first, then the terminal does not support ` OSC 10 ` (or ` OSC 11 ` ).
8
8
9
9
Colorsaurus thus doesn't need to rely on a timeout to detect if a terminal supports ` OSC 10 ` (or ` OSC 11 ` ).
10
10
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ fn query<T>(
108
108
109
109
let response = read_response ( & mut reader) ?;
110
110
111
- // We still need to consume the reponse to DA1
111
+ // We still need to consume the response to DA1
112
112
// Let's ignore errors, they are not that important.
113
113
_ = consume_da1_response ( & mut reader, true ) ;
114
114
You can’t perform that action at this time.
0 commit comments