Ivan Yonchovski
Ivan Yonchovski
Can you disable `shx` mode? Can you check if the code enters in `dap-ui-input-sender`? You may use `M-x edebug-on-entry RET`.
I suggest testing if it works with lsp-start-plain.el as described here: https://github.com/emacs-lsp/lsp-mode/blob/master/.github/ISSUE_TEMPLATE/bug_report.yml Also, please make sure that you have stopped thread when trying the repl.
I will drop all of the packages until I find a working config and then re-add them.
> Hi @yyoncho. I was wondering if you had any luck solving this? > > Thx If it works with lsp-start-plain.el then delete your package dir and then start adding...
At this point dir locals does not work : https://github.com/emacs-lsp/lsp-mode/issues/405 . I am not familiar what is the API so I am not sure whether it will work and what...
> Does it support the customisation we need > for `lsp-ui-doc`? I think yes, you can provide a function that will be called with mouse location.
One more thing here: I suggest having a fixed default width(something like 60/80 symbols) and also fixed max height.
The classpath detection is performed by jdtls server. It uses the same stuff like eclipse for importing the projects, reads the pom/gradle file, determines the modules and so on. I...
Based on this - https://stackoverflow.com/questions/46169522/how-to-debug-underlying-c-library-from-python-interface you can with any of the gdb related debug adapter(most likely lldb will work too). I think that the following will work - start the...
Here it is another one for cpptools adapter: ``` { "version": "0.2.0", "configurations": [ { "name": "(gdb) Attach", "type": "cppdbg", "request": "attach", "program": "enter program name, for example ${workspaceFolder}/a.out", "processId":...