• zagaberoo@beehaw.org
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    Then you lose the benefit of tabs: you can’t adjust the tab width without destroying alignment. So you end up with a confusing mix of characters for no benefit.

    Mixing them is the worst option.

    • JackbyDev@programming.dev
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 year ago

      You’re confusing using tabs for indentation and spaces for alignment with using tabs and spaces for indentation. This means each line starts with tabs. Next you optionally have spaces for alignment with previous lines. Then you have content (like code or comments). Because you never have a tab following a space the alignment is never destroyed by adjusting how wide a tabstop is.

        • JackbyDev@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          1 year ago

          That example is using tabs for both indentation and alignment. The article you linked even says not using tabs for alignment is a solution.

          • Do not use tabs for alignment. In such case given example should look like:
          fun foo x =
          --->let val abs = if x > 0
          --->              then x
          --->              else -x
          --->in
          --->--->(* ... *)
          --->end