Description, because “alt text” can’t show it well:

			{
				emit differentFiles (ckFile.absoluteFilePath(),
					otherFile.absoluteFilePath(),
					FileCompareWorker::FileComparisonParams{FileComparisonParams::FileNameMatch,
						(ckFile.size() > otherFile.size()) ? FileComparisonParams::File1IsLarger
							: FileComparisonParams::File2IsLarger});
			}

After Alignment

			{
				emit differentFiles (ckFile.absoluteFilePath(),
					otherFile.absoluteFilePath(),
					FileCompareWorker::FileComparisonParams{FileComparisonParams::FileNameMatch,
						(ckFile.size() > otherFile.size()) ? FileComparisonParams::File1IsLarger
														   : FileComparisonParams::File2IsLarger});
			}
  • The Quuuuuill@slrpnk.net
    link
    fedilink
    English
    arrow-up
    39
    ·
    1 day ago

    Not random. This is a pretty common standard for most style guides that if you split a ternary operator across lines you align the option colon to the ternary itself. Your alt text formatting is way different from the pic by the way

    • ulternoOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      edit-2
      1 day ago

      Your alt text formatting is way different from the pic by the way

      Hmm.
      I really just copied the stuff directly. Let me try again.

      pretty common standard

      I get it. But I set all available “Align” flags to false and am still getting this.
      I just want a simple thing that only does continuation indents. If there is a space added, it should be something according to the coder (Is what I mean by indents only). though not even that, because all spaces before the first character in the line are to be removed.


      Not random

      Well, I guess I’ll go put a better word in there