- clangd_client: include a missing header for stringstream
- clangd-client: on rename failure, display proper error message instead of json exception
- clangd_client: fix missing header include in previous commit
* clangd_client: support refactoring using clangd (textDocument/codeAction)
Issue is easily reproducible by the steps provided. Issue is caused by smartindentcpp plugin. The plugin does smart indent without checking if it is comment. Disabling smartindent for comments can solve this issue. I'm not sure if this breaks anything else. --- a/src/plugins/contrib/SmartIndent/SmartIndentCpp.cpp +++ b/src/plugins/contrib/SmartIndent/SmartIndentCpp.cpp @@ -86,6 +86,12 @@ void SmartIndentCpp::DoSmartIndent(cbEditor* ed, const wxChar &ch)const return; const int pos = stc->GetCurrentPos();...
'Enter' on a specific line crashes desktop environment
Fixed in [r13883]
- codecompletion: handle missing closing parenthesis during argument parsing (ticket #1600)