You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: exclude modules by wildcard name
With this PR I'd like to introduce the possibility for modules to be excluded without knowing their full name.
Example:
```
{
"type": "mix_task",
"name": "mix phx.server",
"request": "launch",
"task": "phx.server",
"projectDir": "${workspaceRoot}",
"excludeModules": [
":phoenix",
"Phoenix",
"Phoenix.*"
]
}
```
This helped me to use the debugging feature of the vscode-elixir-ls extension. Without this feature I was unable to collect all the modules names that need to be excluded.
* incorporate lukaszsamson's review comments
* fix: remove IO.inspect
0 commit comments