We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
static char gS_MapPrefixes[GameMode_Size][][] = { { "bhop", "kz_bhop", "bhop_kz" }, //GameMode_Bhop { "kz", "xc", "" }, //GameMode_Kreedz { "surf", "", "" }, //GameMode_Surf { "deathrun", "dr", "" } //GameMode_Deathrun };
It will incorrectly format into:
static char gS_MapPrefixes[GameMode_Size][][] = { { "bhop", "kz_bhop", "bhop_kz" }, //GameMode_Bhop{ "kz", "xc", "" }, //GameMode_Kreedz{ "surf", "", "" }, //GameMode_Surf{ "deathrun", "dr", "" }//GameMode_Deathrun }; ^ | | notice that the rest of the code is in the comment
Maybe include something that the user can do to mark out sections of the code that it shouldn't format?
For example:
//@formatter:off static char gS_MapPrefixes[GameMode_Size][][] = { { "bhop", "kz_bhop", "bhop_kz" }, //GameMode_Bhop { "kz", "xc", "" }, //GameMode_Kreedz { "surf", "", "" }, //GameMode_Surf { "deathrun", "dr", "" } //GameMode_Deathrun }; //@formatter:on
Thank you and let me know if you need anything else from me related to this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It will incorrectly format into:
Maybe include something that the user can do to mark out sections of the code that it shouldn't format?
For example:
Thank you and let me know if you need anything else from me related to this.
The text was updated successfully, but these errors were encountered: