Nathan Ridge
Nathan Ridge
Are you looking to pause the clangd server process altogether, or just the background indexer? Sigstop has the effect of the former, which means e.g. hover or go-to-definition in an...
FYI, the new `boost-use-ranges` check is pretty crashy in clangd (https://github.com/llvm/llvm-project/issues/109037, https://github.com/llvm/llvm-project/issues/109367, https://github.com/clangd/clangd/issues/2173, https://github.com/clangd/clangd/issues/2151).
> It crashes most likely because a local variable is captured in the static lambda. > > https://github.com/llvm/llvm-project/blob/bf895c714e1f8a51c1e565a75acf60bf7197be51/clang-tools-extra/clang-tidy/boost/UseRangesCheck.cpp#L208 Nice find! That does seem to be the problem. I've put up...
I think this issue was closed when it shouldn't have been: > So there are three issues here: > > [...] > > 2. conventional `#ifndef` guards on the main-file...
> The patch for item 2 is https://reviews.llvm.org/D78038, but it has not merged. I've rebased this patch and posted is as a Github PR at https://github.com/llvm/llvm-project/pull/95200
> > The patch for item 2 is https://reviews.llvm.org/D78038, but it has not merged. > > I've rebased this patch and posted is as a Github PR at [llvm/llvm-project#95200](https://github.com/llvm/llvm-project/pull/95200) Unfortunately,...
> Is there any workaround in the meantime? Yes, please see [this comment](https://www.reddit.com/r/emacs/comments/14bf1uw/comment/lj5ojt2/).
> * deduce language instead of assuming from file extension, for example C++ headers ending in .h We have #123 on file about deducing language from the project's include graph...
Ah, I see, you meant deduce based on file content. I can see that being useful as a fallback if the include graph doesn't turn up anything. Note, I haven't...
> Clients already send a `languageId` in the `textDocument/didOpen` message, and we already deserialize it in `onDocumentDidOpen`. We could just use `Params.textDocument.languageId` as-is, currently we ignore it. How does the...