-
Notifications
You must be signed in to change notification settings - Fork 899
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[unstable option] format_macro_matchers #3354
Comments
There are a number of cases where - ($cg:ident.$field:ident) => {
+ ($cg:ident. $field:ident) => { Rust code would normally have I think this option should determine whether to include spaces around a given token based on whether that token would normally have spaces in Rust code. |
@joshtriplett @scampi macro_rules! test_macro {
- ($child:expr, Module) => {
+ ($child:expr,Module) => {
let x = 11;
};
} If everyone is in agreance that Personally, I don't think there's ever a reason for |
@InsertCreativityHere I don't think there are any circumstances where |
Tracking issue for unstable option: format_macro_matchers
The text was updated successfully, but these errors were encountered: