hfn92
hfn92
Sorry I was being unclear. I was talking about the watches window (the one that per default says "No Expressions". Is this possible there? Looks like it only supports `add({expr})`
Update: after not even being able to use `pui.eval(, { context = "repl" })` correctly I notices that I should probably not use (what I believe are) lldb commands e.g...
Maybe not exactly what you are looking for but, have you seen this? https://github.com/rcarriga/nvim-dap-ui/issues/285  with code codelldb you can add format options (See. https://github.com/vadimcn/codelldb/blob/master/MANUAL.md#formatting) For more complex stuff it...
Sorry for being unclear. You'd have to use `dapui.eval("n,x", { context = "repl" }) ` to use that. `dap-ui` only supports watchs expressions in the watch view. If you want...
Oh sorry again, it should be `eval("?n,x", { context = "repl" }) `
Are you sure you are using codelldb? I get the exact same error when I use `lldb-vscode`  while on `codelldb` I get  with `lldb-vscode` you can to use...
Glad to hear you got it working. If you are looking for a way to load formatters more dynamically check this out https://github.com/hfn92/NvChad/blob/d7efdab0c2872a3600393354dfa38c1a0c40c86c/lua/custom/configs/cmake-tools.lua#L24-L49
Just FYI, I had the exact same assertion when emplacing a component after previously accessing the same type of component from a deleted entity (Which of course is wrong). Something...
> Wait a moment. In this case, EnTT should throw an assert to you. Did you disable them? No I did not. I was confused about that as well. EDIT:...
Well an assertion at the point of error would have saved me some time in this case. I think it's worth adding even if it doesn't work when accessing the...