• writing code normally

    ocaml-lsp: syntax error

    ocaml-lsp: syntax error

    ocaml-lsp: syntax error

    ocaml-lsp: syntax error

    ocaml-lsp: okay, probably okay

    ocaml-lsp: syntax error

    ocaml-lsp: syntax error

    ocaml-lsp: wait, the entire function is wrong

    me: WHAT, where

    ocaml-lsp: like the entire thing, 20 lines of it,

    a -> (b -> c -> d) -> [200 other types] ->g
    

    doesn’t match

    a -> (b -> c/2 -> d) -> [200 other types] ->g
    

    , c doesn’t match c/2.

  • On the other hand, when my IDE doesn’t tell me:

    Build Server: “BUILD FAILED! SonarQube says that Roslyn says that you’re not using one of your variables!”

    Yea okay calm down, and why are you snitching now, Roslyn? Should have told me directly 🙃

  •  myxi   ( @myxi@feddit.nl ) 
    link
    fedilink
    English
    5
    edit-2
    3 months ago

    I turn off LSPs during my train of thoughts. I don’t want all red and yellow underline bullshit to disrupt my thoughts. Like, calm the fuck down. I WILL write the correct code eventually; just give me some fucking time.

    Well, I use Neovim, so turning off the LSPs or restarting them is sufficiently simple.

    When I work on a new project, or on a new feature, I temporarily turn off the LSP, and rely on the compiler to figure out where the code errors. Plain white text gives me the freedom to write whatever the fuck I want without any disruption. Of course, I eventually turn on the LSP again to fix the little issues.

      •  myxi   ( @myxi@feddit.nl ) 
        link
        fedilink
        English
        2
        edit-2
        3 months ago

        I also leave out little syntax errors and only only focus on the rough idea during my train of thoughts. And the variables, aren’t really supposed to be implied as private or unused – I do eventually meaningfully use them. If I have to prefix all my variables with a underscore to avoid the LSP, I might instead just disable the LSP. When I eventually turn the LSP back on, it tells me the actually unused variables and imports that I can now get rid of.

        Because of the LSP, I used to write maybe three hundred lines of code per hour, but now I probably average at least five hundred or more.

    • It’s more language dependent than ide. Go for instance makes unused variables a compiler error (I believe) which means ides mark it as red immediately.

      Ts/js can have eslint rules against unused variables but they will still usually compile or just run directly anyway.

      Java doesnt error but can be set to warn you on them.

      Abap doesn’t care and won’t tell you.

      Your mileage will vary.