hey everyone! im new to elixir and erlang. if i understand correctly elixir has the ability to load/reload parts of a code (i.e modules) without restarting the whole app
i thought that'd be a great way to debug fast, like i'd be able to make changes and see them apply without restarting the whole session. seems its not so seamless but i can run recompile manually in iex -S mix which works (btw is there a way to trigger this automatically on save?)
the thing is i cant do that with vscode's debugger (with elixirls) (putting it in debug console says error: undefined function recompile/0 so it seems i can either add breakpoints or have hot-reloading, is there a way to get both somehow?
thank u for ur help!