• Feyter@programming.devM
    link
    fedilink
    arrow-up
    38
    arrow-down
    15
    ·
    11 months ago

    I don’t get it… “D” is a complete different character than “d” is.

    It’s like wondering why “file1” is not opened when I typed in “file2”.

    • Swedneck@discuss.tchncs.de
      link
      fedilink
      arrow-up
      23
      arrow-down
      3
      ·
      11 months ago

      that’s not how language works though, in human language (i know this can be confusing) d and D are the same letter just in different forms.

      It’s one thing to have case sensitivity in programs doing data manipulation, that makes sense because you don’t want the program to accidentally use the wrong files without supervision.

      But when you have an interactive prompt you know what you’re doing, you can see if you entered the wrong directory, and you’re generally going to be working in directories that you have yourself organized.

      • 4am@lemm.ee
        link
        fedilink
        arrow-up
        5
        arrow-down
        4
        ·
        11 months ago

        Doesn’t tab completion solve this if there are no alternatives with matching case? sounds like a PBKAC

    • lemmonade@lemm.ee
      link
      fedilink
      arrow-up
      11
      arrow-down
      2
      ·
      11 months ago

      You could also say that down should not complete to download since those are completely different strings and you shouldn’t expect one to get you the other.

        • Honytawk@lemmy.zip
          link
          fedilink
          arrow-up
          6
          arrow-down
          2
          ·
          11 months ago

          Substring is not string.

          If they were interchangeable, then “D” & “d” should be too.

          • Feyter@programming.devM
            link
            fedilink
            arrow-up
            2
            ·
            11 months ago

            down matches down* because * also includes empty string. Also download matches down*

            D matches D* but d is not matching D* because D is a different character than d.

            • lemmonade@lemm.ee
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              11 months ago

              but why do we have to match specifically against substr*? it’s not a law of nature, we could also match against the regex (?i)substr(?-i).*

              not saying that one option is necessarily better, but I don’t see a good reason for which any one of these options would be terrible

              • Feyter@programming.devM
                link
                fedilink
                arrow-up
                1
                ·
                edit-2
                11 months ago

                Because usability. If you have the files down down1 down2 downxyz and download and the user only knows that it was “something with down” it’s best to show the user everything matching “down*” and let the user decide what’s the correct one.

                Also I’m not sure but wouldn’t your expression show everything if only one character would be entered?

                And again I don’t see this solving anything if the entered string actually contains other characters then what’s in the file (D != d)

                Yes one could argue that some form of advanced algorithm or even AI could be used to identify such use case like download and Download but this is programming Humor, not linguisic Humor.

    • schnurrito@discuss.tchncs.de
      link
      fedilink
      arrow-up
      9
      arrow-down
      1
      ·
      11 months ago

      On Windows filenames are case insensitive at least usually, some people are used to that. But that is poor design for so many reasons, Turkish I being one of them.

        • Reil@beehaw.org
          link
          fedilink
          English
          arrow-up
          1
          ·
          11 months ago

          One of the most pointlessly annoying things I’ve had to deal with was trying to move a process made for Linux onto a Windows MINGW/cygwin-type environment where one of the scripts would generate “.filename” AND “.FileName” files. :|

    • 1984@lemmy.today
      link
      fedilink
      arrow-up
      6
      arrow-down
      6
      ·
      edit-2
      11 months ago

      People want their computers to magically know what they want these days. :)

      This specific problem doesn’t exist in oh-my-zsh config though. It will find the directory even if spelling it like this.

      • PupBiru@kbin.social
        link
        fedilink
        arrow-up
        8
        arrow-down
        2
        ·
        11 months ago

        “magically know what they want” aka occasionally set you and your files on fire

        i prefer not fire