ccls icon indicating copy to clipboard operation
ccls copied to clipboard

C/C++/ObjC language server supporting cross references, hierarchies, completion and semantic highlighting

Results 159 ccls issues
Sort by recently updated
recently updated
newest added

Hi, I was wondering if there could be a way to configure where the `&` is placed in code completion snippets involving references? Obviously people have different preferences so a...

### Observed behavior When developing using ccls on VSCode, ccls sometimes crashes and cannot be restarted. A stack trace is generated in the log window. It looks like this happens...

### Observed behavior Crash since Manjaro updated to clang 11 after commit `f5bcd1dbdd6743df7537de73b2372abc98918982` will lead to frequent crashes on header change reindex coc-config ``` "ccls": { "command": "ccls", "filetypes": ["c",...

clang

Program compiles successfully(no errors when compiling with either gcc or clang), but when launched, Vscode shows it can't be started and when launching manually pops up with this message. i...

help wanted

### Observed behavior calling doHover does not parse comment strings or doxygen markers in nvim. This is true for language clients of Coc & builtin nvim-lsp ![ccls](https://user-images.githubusercontent.com/10258296/110620726-a7cad780-8199-11eb-8d49-154883e351c4.gif) ### Expected behavior...

### Observed behavior There are two problems happened like the pictures below: In vscode: ![image](https://user-images.githubusercontent.com/46896167/111440777-a40ef600-8741-11eb-8b10-716db55c3dc1.png) In gvim: ![image](https://user-images.githubusercontent.com/46896167/111441628-72e2f580-8742-11eb-99ba-c59500b9e0e1.png) ### Expected behavior 1. Correct type display *(about 'doHover')* 2. Code completion...

### Observed behavior compile_commands.json ```json [ { "directory": "C:\\Users\\xq114\\_tmp\\xmake-test", "arguments": ["C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\Community\\VC\\Tools\\MSVC\\14.28.29333\\bin\\HostX64\\x64\\cl.exe", "-c", "/EHsc", "-nologo", "-MT", "-I", "C:\\Users\\xq114\\_tmp\\xmake-test\\src\\liba", "-I", "C:\\Users\\xq114\\_tmp\\xmake-test\\src\\libb", "-Fobuild\\.objs\\xmake-test\\windows\\x64\\release\\src\\main.cpp.obj", "src\\main.cpp"], "file": "src\\main.cpp" }, { "directory":...

First of all, ccls is fantastic, and I sorely miss it whenever I can't use it. One such situation is with [CodeQL in Visual Studio](https://github.com/github/vscode-codeql), since it creates a read-only...

使用 https://github.com/vincent-picaud/Bazel_and_CompileCommands 已经生成了 compile_commands.json,但是ccls 在 vscode 中没有代码提示和跳转,但是找不到头文件等报错没有了,初始化的是 tcmalloc,项目本身用 bazel 项目管理。想问问是哪里出了问题呢

### Observed behavior ```cpp /** * docstring on primary template declaration */ template struct fn_wrap_t; template struct fn_wrap_t { using ret_type_t = R; }; int main() { fn_wrap_t x; }...