ccls
ccls copied to clipboard
C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting
In my project, the `compile_commands.json` file is also used to set the project base directory. Only the files listed there gets compiled by ccls. The fact is that when I...
currently when I type `myvec.` or `mylist.` I saw a long list of autocomplete include many definitions starting with _ or __ that is not useful for real coding, clion...
Every time I run the following code using ccls my computer starts freezing until ccls is killed. I did the test using nvim-lsp and vscode-ccls and both showed similar results....
Howdy, As part of [Gitpod's Open Source Fund](https://www.gitpod.io/blog/gitpod-open-source-sustainability-fund/) initiative attendees of the [DevX Conf](http://devxconf.org/opensource) were able to decide where $10,000 USD of funds (the profits from DevX Conf plus an...
I don't believe that this is a feature in the official LSP spec but it is [implemented by `clangd`](https://clangd.llvm.org/extensions.html#switch-between-sourceheader) so I thought it to be worth asking. Is there any...
### Observed behavior Given this code: ``` #include #include struct S { auto hello() -> void { std::cout hello(); } ``` I get the error messages: On line 7: ```...
### Observed behavior ccls reports invalid name for the operator in this code: ``` template struct Foo { operator Foo() { return 0; } }; ``` It produces this json...
### Observed behavior In vscode ccls output, header file not found. And the ctrl+click to go to header file does not work. the header file path is already in the...
I just had a showerthought idea regarding two possible performance improvements in ccls. I didn't do any benchmarking neither know whether these components are the performance bottleneck of ccls. So...
I install ccls by snap while write c code, use `editorconfig-format-buffer` command not working. switch ccls to clangd, the command working good.