VS Code - 在ubuntu子系统上使用rails debugger for windows 10

时间:2017-05-12 17:29:57

标签: ruby-on-rails linux windows visual-studio-code

我在Windows 10上的ubuntu子系统上成功安装了rvm,ruby和rails。

现在我正在尝试在Windows代码上使用调试器,但是我找不到这样做的方法。在我的linux机器上,我使用:

{
  "name": "Rails server",
  "type": "Ruby",
  "request": "launch",
  "cwd": "${workspaceRoot}",
  "program": "${workspaceRoot}/bin/rails",
  "useBundler": true,
  "pathToBundler": "/home/user/.rvm/gems/ruby-2.3.1/wrappers/bundle",
  "showDebuggerOutput": true,
  "pathToRDebugIDE": "/home/user/.rvm/gems/ruby-2.3.1/bin/rdebug-ide",
  "args": [
    "server"
  ]
}

我尝试将路径指向linux子系统(%localappdata%\ Lxss \ home \ user \ .rvm ...)但它不起作用,因为Windows没有看到此路径。

有没有人能够在linux subsytem上成功使用rdebug?

0 个答案:

没有答案