cquery icon indicating copy to clipboard operation
cquery copied to clipboard

C/C++ language server supporting multi-million line code base, powered by libclang. Emacs, Vim, VSCode, and others with language server protocol support. Cross references, completion, diagnostics, sem...

Results 100 cquery issues
Sort by recently updated
recently updated
newest added

In many cases, I always encounter situation where the diagnostic said 'unknown type name XXXXX' but when I click on the symbol, I can successfully jump to the definition of...

**Operating System:** Linux Mint 19.1. **Editor:** Emacs with lsp-mode and emacs-cquery **compile_commands.json:** [pastebin](https://pastebin.com/V5Nznt6P) This happens in my project, [Vibrato Notes](https://gitlab.com/Open-App-Library/vibratonotes-desktop/). I'll run my [gen_compile_commands.sh](https://gitlab.com/Open-App-Library/vibratonotes-desktop/blob/master/gen_compile_commands.sh) script (which uses Bear) in order...

I'm working on Gstreamer project, and the build system generates a few symlinks to the directories inside the projects (like gst-plugins-base -> ../subprojects/gst-plugins-base). Opening the original file works, opening through...

I'm trying to figure out why the standard VSCode C++ plugin scans my `compile_commands.json`-based project just fine but cquery shows undefined macros. I am using cquery HEAD installed with Homebrew...

I tried to build it manually, using the instructions. I'm running macOS 10.14.2 with Xcode 10.1 I checked out master (70c755b2e390d3edfb594a84a7531beb26b2bc07) and build with: ``` -DCMAKE_BUILD_TYPE=Release -DSYSTEM_CLANG=OFF -DCMAKE_PREFIX_PATH=/opt/cquery ``` It...

![image](https://user-images.githubusercontent.com/12042284/51079017-77985480-1674-11e9-891d-10040a051007.png) Hi, I am wondering which initialization option I should use to setup cquery.

I have to copy same `.cquery` every where, it contains only few lines: ```text %clang %c -std=gnu11 %cpp -std=gnu++14 -pthread # Includes -ID:/dev/mingw/include ``` Can I have a global `.cquery`...

help wanted

OS: Debian Stretch 64-bit cmake 3.10.2 Followed exact commands in instructions on how to build. /cquery/cquery/build$ cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=release -DCMAKE_EXPORT_COMPILE_COMMANDS=YES -- Using downloaded Clang -- Downloading Clang 6.0.1 (https://releases.llvm.org/6.0.1/clang+llvm-6.0.1-x86_64-linux-gnu-ubuntu-14.04.tar.xz)...

Hello, I noticed some issues when trying to run cquery as an LSP backend in neovim on macOS; the exact platform is below. ``` (i) uname -a Darwin yangmillstheory.attlocal.net 18.0.0...

When editing this: ```cpp #include int main(int argc, char *argv[]) { Eigen::Matrix3d bar; bar(0,0) = 1; return 0; } ``` I get this error: `[Error]called object type 'Eigen::Matrix3d' (aka 'int')...