Ashar
Ashar
Also put these codes in a separate folder like include/lsp/CppLsp.h and similarly for source files.
I will be making https://github.com/coder3101/lsp-cpp compatible to work with the editor. This would add Simple LSP for Editor. We don't need complex LSP like that of VSCODE because our editor...
QCodeEditor must modify its auto complete insertion text, because for auto completion of functions the LSP responds with text as below: ```cpp void foo(int bar); int main(){ fo| } ```...
@madhur4127 Could you elaborate your comment?
There is already LSP support. Even the Client we use currently support everything that LSP offers. It is just that we don't have UI/Code Editor that can show these things.
Breakpoints supports are required from Editor for this feature to be incorporated in Editor. You can however add sanitizers to your compile commands and get more information about Crashes directly...
Scintialla has margins that allow us to put breakpoints. This issue will get some attention once Scintilla based editor is released.
Maybe we can add an option "Smart Parenthesis Completion", that can toggle this behaviour on or off
Generally stack size is configurable at time of compilation so can you not change the [compile command](https://cpeditor.org/zh_tw/docs/preferences/language/#c-compile-command) to suit your need? It should work for MinGW in Windows.
~You can add Add `ulimit -s unlimited` to .bashrc for linux? I don't think there is a way to specifically increase limit for one program except using `setrlimit` syscall.~