-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use magenta instead of bold for highlighting
according to a poll of gay people in my phone, purple is the most popular color to use for highlighting | color | percentage | | ---------- | ---------- | | bold white | 6% | | blue | 14% | | cyan | 26% | | purple | 37% | | magenta | 17% | unfortunately, purple is not supported by 16-color terminals, which rustc apparently wants to support for some reason. until we require support for full 256-color terms (e.g. by doing the same feature detection as we currently do for urls), we can't use it. instead, i have collapsed the purple votes into magenta on the theory that they're close, and also because magenta is pretty.
- Loading branch information
Showing
6 changed files
with
58 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// Make sure "highlighted" code is colored purple | ||
|
||
// compile-flags: --error-format=human --color=always | ||
// error-pattern:[35mfor<'a> [0m | ||
// edition:2018 | ||
|
||
use core::pin::Pin; | ||
use core::future::Future; | ||
use core::any::Any; | ||
|
||
fn query(_: fn(Box<(dyn Any + Send + '_)>) -> Pin<Box<( | ||
dyn Future<Output = Result<Box<(dyn Any + 'static)>, String>> + Send + 'static | ||
)>>) {} | ||
|
||
fn wrapped_fn<'a>(_: Box<(dyn Any + Send)>) -> Pin<Box<( | ||
dyn Future<Output = Result<Box<(dyn Any + 'static)>, String>> + Send + 'static | ||
)>> { | ||
Box::pin(async { Err("nope".into()) }) | ||
} | ||
|
||
fn main() { | ||
query(wrapped_fn); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[0m[1m[38;5;9merror[E0308][0m[0m[1m: mismatched types[0m | ||
[0m [0m[0m[1m[38;5;12m--> [0m[0m$DIR/highlighting.rs:22:11[0m | ||
[0m [0m[0m[1m[38;5;12m|[0m | ||
[0m[1m[38;5;12mLL[0m[0m [0m[0m[1m[38;5;12m|[0m[0m [0m[0m query(wrapped_fn);[0m | ||
[0m [0m[0m[1m[38;5;12m| [0m[0m [0m[0m[1m[38;5;12m-----[0m[0m [0m[0m[1m[38;5;9m^^^^^^^^^^[0m[0m [0m[0m[1m[38;5;9mone type is more general than the other[0m | ||
[0m [0m[0m[1m[38;5;12m| [0m[0m [0m[0m[1m[38;5;12m|[0m | ||
[0m [0m[0m[1m[38;5;12m| [0m[0m [0m[0m[1m[38;5;12marguments to this function are incorrect[0m | ||
[0m [0m[0m[1m[38;5;12m|[0m | ||
[0m [0m[0m[1m[38;5;12m= [0m[0m[1mnote[0m[0m: expected fn pointer `[0m[0m[35mfor<'a> [0m[0mfn(Box<[0m[0m[35m(dyn Any + Send + 'a)[0m[0m>) -> Pin<_>`[0m | ||
[0m found fn item `fn(Box<[0m[0m[35m(dyn Any + Send + 'static)[0m[0m>) -> Pin<_> {wrapped_fn}`[0m | ||
[0m[1m[38;5;10mnote[0m[0m: function defined here[0m | ||
[0m [0m[0m[1m[38;5;12m--> [0m[0m$DIR/highlighting.rs:11:4[0m | ||
[0m [0m[0m[1m[38;5;12m|[0m | ||
[0m[1m[38;5;12mLL[0m[0m [0m[0m[1m[38;5;12m|[0m[0m [0m[0mfn query(_: fn(Box<(dyn Any + Send + '_)>) -> Pin<Box<([0m | ||
[0m [0m[0m[1m[38;5;12m| [0m[0m [0m[0m[1m[38;5;12m____[0m[0m[1m[38;5;10m^^^^^[0m[0m[1m[38;5;12m_-[0m | ||
[0m[1m[38;5;12mLL[0m[0m [0m[0m[1m[38;5;12m|[0m[0m [0m[0m[1m[38;5;12m|[0m[0m [0m[0m dyn Future<Output = Result<Box<(dyn Any + 'static)>, String>> + Send + 'static[0m | ||
[0m[1m[38;5;12mLL[0m[0m [0m[0m[1m[38;5;12m|[0m[0m [0m[0m[1m[38;5;12m|[0m[0m [0m[0m)>>) {}[0m | ||
[0m [0m[0m[1m[38;5;12m| [0m[0m[1m[38;5;12m|___-[0m | ||
|
||
[0m[1m[38;5;9merror[0m[0m[1m: aborting due to 1 previous error[0m | ||
|
||
[0m[1mFor more information about this error, try `rustc --explain E0308`.[0m |
7 changes: 4 additions & 3 deletions
7
...estions/multiline-multipart-suggestion.rs → ...emitter/multiline-multipart-suggestion.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters