Ivan Yonchovski
Ivan Yonchovski
Take a look at https://github.com/WebFreak001/code-debug/blob/master/package.json#L72 . It lists all arguments that you can pass to the debug adapter. Then in dap-mode you could do `M-x` `dap-debug-edit-template` and specify all params...
You should be able to place the breakpoints before starting the program or you are asking something else? AFAIK native debug have some limitations, you may read about them in...
> I am trying to place breakpoints before starting the program. I run dap-debug and select my template and then the program executes and runs to completion. When in the...
@EgorDuplensky you can build whatever flow you want creating a wrapper over dap-debug. Here is sample one: ``` (defun my/debug () (interactive) (dap-debug (list :type "cppdbg" :request "launch" :name "cpptools::Run...
@EgorDuplensky in general what I do is to create the configurations I need and then I use dap-debug-recent/dap-debug-last to pick the right one.
As a side note, we will make sideline errors work for flymake as well.
> lsp-workspace-folders-remove There is a bug in this function, the folder is not cleared from the other map server-id-folder. I will fix it and then we will see whether anything...
https://github.com/yyoncho/lsp-mode/tree/better-multi-folder-handling so here it is proposed fix. I will do additional testing tomorrow before committing. I still see some odd "classpath not found" when opening the project for the first...
Can you retest after getting latest https://github.com/emacs-lsp/lsp-mode/commit/b29e0254f28820653ee834fc17c68aff969841af ? Note: I noticed that you may get classpath not found depending on whether the JDT LS has imported the folder or not....
> I also tried ` lsp-java-lsp-new-workspace`, with no luck. Per project workspace may require more work. Do you have a particular usecase for it? I am asking because jdt ls...