LS server config #1383
Unanswered
Whaileee
asked this question in
Support Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any way to set erlang_ls' kernel ticktime? I'm having so much trouble with setting up a debugger in vscode and I need to change the ticktime to match my remote node's.
launch.json fragment:
{ "name": "attach to remote", "type": "erlang", "request": "launch", "projectnode": "debugger@local", "arguments": "-kernel net_ticktime 8", "cookie": "magic", "timeout": 300, "cwd": "${workspaceRoot}", "runinterminal": [ "erl", "-sname", "debugger", "-setcookie", "magic", "-kernel", "inetrc", "'/some/path/to/erl_inetrc'", "-kernel", "net_ticktime", "8", "-remsh", "remote@node" ], },
Unfortunately, what I have there is not working as expected.
Works until kernel net_ticktime in runinterminal and remsh is not set. Erl is launched and erlang_ls is attached.
Beta Was this translation helpful? Give feedback.
All reactions