Code Monkey home page Code Monkey logo

Comments (1)

micahrye avatar micahrye commented on July 23, 2024 1

I was able to get breakpoints working correctly in my project by coping the config info here

Not sure if I had deleted the "mix (Default task)" object

{
      "type": "mix_task",
      "name": "mix (Default task)",
      "request": "launch",
      "projectDir": "${workspaceRoot}"
}

when I first was exploring it in vscode. I do know when you "Add Configuration..." it adds the following object:

{
      "type": "mix_task",
      "request": "launch",
      "name": "mix task",
      "task": "task",
      "taskArgs": [],
      "projectDir": "${workspaceRoot}"
}

Which has a similar shape to the "test" configuration

{
      "type": "mix_task",
      "name": "mix test",
      "request": "launch",
      "task": "test",
      "taskArgs": [
        "--trace"
      ],
      "startApps": true,
      "projectDir": "${workspaceRoot}",
      "requireFiles": [
        "test/**/test_helper.exs",
        "test/**/*_test.exs"
      ]
    }

that did work, and led me in the wrong direction.

Documentation that explains the configuration would be helpful.

Here is my take based on vscode docs:

  • type - the type of debugger to use for this launch configuration. In the case of ElixirLS the type must be mix_task
  • name - friendly name which appears in the Debug launch configuration dropdown
  • request - the request type of this launch configuration. Currently supported are launch and attach. I believe ElixirLS only supports launch.
  • projectDir - is a variable set with the vscode defined workspaceRoot. [${workspaceRoot} is defined by VS Code itself. This is the folder you opened when you used "Open Folder" option in "File"] (microsoft/vscode-cpptools#1104). projectDir is used by ElixirLS ElixirLS.Debugger.Server. initialize

This is a very nice project overall, thanks.

from elixir-ls.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.