Skip to content

Instantly share code, notes, and snippets.

@Constellation
Created March 27, 2011 20:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Constellation/889555 to your computer and use it in GitHub Desktop.
Save Constellation/889555 to your computer and use it in GitHub Desktop.
// 2 space の場合
// cond_c の前のindent, こんな感じで調節できる!!
if ((cond_a || cond_b ||
cond_c || cond_d) || cond_e) {
}
// 引数の場合とかでも
test(value1, value2,
value3, value4);
// tab の場合
// cond_c の前に spaceが一個入ってしまう!! ぎゃー!!
if ((cond_a || cond_b ||
cond_c || cond_d) || cond_e) {
}
// よくないspaceがっ!
test(value1, value2,
value3, value4);
// というふうな諸事情があり, 2 space派になりました
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment