Often find myself getting frustrated editing yaml, and it seems to be used everywhere for some reason I cannot fathom

I have an idea to write an editor plugin that will, when opening a yaml file, convert it to json (or some other less painful configuration language), then convert back on save. I don’t know enough about yaml syntax to know if that’s possible or if there’s some quirk that makes them not completely cross compatible

Or alternatively if it exists a better CLI tool for editing yaml than just a normal text editor because I’m getting sick of pasting in a block of yaml and then having to fix the 8 indentation errors that somehow spawn from that

  • bionicjoey@lemmy.ca
    link
    fedilink
    English
    arrow-up
    16
    ·
    3 months ago

    What text editor are you using? In theory most should detect a yaml file and adjust their indentation behaviour appropriately. I edit yaml in VSCode and Kate and it’s never been a problem.

    • flashgnash@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      arrow-down
      1
      ·
      3 months ago

      I use nvim for it, it works but I’d rather not have to deal with indentation in the first place

      • bionicjoey@lemmy.ca
        link
        fedilink
        English
        arrow-up
        5
        ·
        3 months ago

        Well in that case, I have good news. All valid JSON is also valid yaml. It’s a superset by definition. So if you really hate yaml so much you can just write your yaml files as JSON and the parser should handle it fine. Just be aware that yaml does some more agressive typecasting when quotes are omitted, so you may need to figure out which value is actually being used when converting.

        • flashgnash@lemm.eeOP
          link
          fedilink
          English
          arrow-up
          2
          ·
          3 months ago

          Seriously? Chatgpt told me that once and I thought it was just hallucinating

          Problem is it’s for configuration of other services I didn’t write, I would just use JSON in the first place if I were defining the schema

          • bionicjoey@lemmy.ca
            link
            fedilink
            English
            arrow-up
            9
            ·
            3 months ago

            You should try looking up the language spec rather than hoping a text generator will generate truthful results. What’s even the point of asking for answers if you don’t trust that the thing you’re asking won’t just bullshit you?

            • flashgnash@lemm.eeOP
              link
              fedilink
              English
              arrow-up
              3
              arrow-down
              1
              ·
              3 months ago

              Can usually tell when it’s obviously bullshitting me and verify it if it’s not. You can often get it to correct itself if you call it out

              (This was the first time I’ve seen it incorrectly “corrected” itsself)

              I think I did a quick search but it seemed so strange to me I just wrote it off straight away

  • multifredding@feddit.de
    link
    fedilink
    English
    arrow-up
    6
    ·
    3 months ago

    I could see some problems when working with yaml anchors, otherwise the conversion should work fine. But yeah, using a good editor should fix most problems and would be much easier

      • multifredding@feddit.de
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 months ago

        They are basically constants where you can define reoccurring sections once and reference them multiple times throughout the file. A processor will then resolve these. As gar as I know, there is no comparable concept in JSON so they could get lost in translation

    • flashgnash@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      3
      arrow-down
      1
      ·
      3 months ago

      I’m using neovim. It doesn’t magically solve my problems with yaml though

      • eleitl@lemmy.ml
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 months ago

        I’m not a power yaml user by any means, but syntax highlighting and linting pipelines do help.

  • bionicjoey@lemmy.ca
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 months ago

    I have an idea to write an editor plugin that will, when opening a yaml file, convert it to json (or some other less painful configuration language), then convert back on save. I don’t know enough about yaml syntax to know if that’s possible or if there’s some quirk that makes them not completely cross compatible

    You could probably do this pretty easily with a simple python script. Use the yaml parser to convert into a dictionary, use the JSON renderer to save that dictionary into a pipe file. Launch the visual editor of your choice on that file. When the editor exits, read the file as JSON, parse it back into a dictionary, and use the yaml renderer to save that dictionary back into the original file.

    • flashgnash@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 months ago

      Yeah that was exactly what I was thinking, and/or doing a similar thing in lua as an nvim plugin

      That said I’m not sure if neovim would support something like that

  • wisplike_sustainer@suppo.fi
    link
    fedilink
    English
    arrow-up
    2
    arrow-down
    2
    ·
    3 months ago

    YAML to JSON is probably doable, JSON back to YAML not so much.

    There are multiple ways to mark multiline strings in YAML. Then there are anchors, like bionicjoey mentioned. Also comments, YAML has them. You’d have to have some way to retain the extra information, if you want to make the full round trip.

    Here’s an example:

    def-db: &def-db
        # here be dragons
        login: admin
        passwd: nimda
        
    prod:
        db: *def-db
        desc: |
            I'm a teapot
            short and stout
    
    dev:
        db: 
            <<: *def-db
            passwd: pass
        desc: "I'm a teapot\nshort and stout\n"
    

    converted to JSON looks like this

    {
        "def-db": {
            "login": "admin",
            "passwd": "nimda"
        },
        "prod": {
            "db": {
                "login": "admin",
                "passwd": "nimda"
            },
            "desc": "I'm a teapot\nshort and stout\n"
        },
        "dev": {
            "db": {
                "login": "admin",
                "passwd": "pass"
            },
            "desc": "I'm a teapot\nshort and stout\n"
        }
    }
    
    • 5C5C5C@programming.dev
      link
      fedilink
      English
      arrow-up
      2
      ·
      3 months ago

      All JSON is valid YAML, so after you’ve converted the file to JSON, just… save it with a YAML file extension and call it a day…?

    • girsaysdoom@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      3 months ago

      I think the difference is that it sounds they are just looking for something JSON-like, just enough to edit and save a change. It might not need to be valid.

      • wisplike_sustainer@suppo.fi
        link
        fedilink
        English
        arrow-up
        3
        ·
        3 months ago

        So, a new not-a-markup-language, only human readable and editable, and objectively better than its predecessor? Well, it’s all according to tradition. I believe YAML got its start the same way.

      • flashgnash@lemm.eeOP
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        1
        ·
        edit-2
        3 months ago

        No, I was thinking of actual JSON because it makes it easier to write a plugin (just use built in libraries to import and export configurations)

        That said I suppose I could use the built in library and then re-inject comments after the fact

          • flashgnash@lemm.eeOP
            link
            fedilink
            English
            arrow-up
            1
            arrow-down
            1
            ·
            3 months ago

            Not a terrible idea to add bits into the JSON but it makes it much harder to program, going for a quick and easy fix here rather than writing my own parser

            • girsaysdoom@sh.itjust.works
              link
              fedilink
              English
              arrow-up
              1
              ·
              edit-2
              3 months ago

              Maybe a 3rd file would work? You could add all of the relevant data there and when translating between one language or the other it would prune any comments or unsupported features as the output is generated.

              • flashgnash@lemm.eeOP
                link
                fedilink
                English
                arrow-up
                1
                ·
                edit-2
                3 months ago

                My plan is not to have multiple files at all and only have the JSON be in memory, or at least if there is a second one have it be temporary and deleted on exit

                The problem with the approach of having an intermediary format is I need to create the intermediate format, and given yaml starts for yet another markup language that doesn’t seem like a good idea (also a ton of effort to reinvent the wheel)

    • flashgnash@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      arrow-down
      1
      ·
      3 months ago

      Comments are an issue I’d have to think about. Would prebuilt libraries for importing/exporting data from/to these languages not handle the multiline strings for me?

      What do anchors do in yaml I’ve never heard of them before