Nathan Ridge

Results 1499 comments of Nathan Ridge

To be clear, `--config-fragment` has not been implemented. It was an idea that came up during the discussion of another feature request. And today I repurposed this issue to track...

My opinion as a maintainer is that "adding `-m32` to all compile commands" is too specific of a behaviour to have a dedicated clangd command line option. There are existing...

A related enhancement could be to show a `Foo` type hint before the braces (a variant of #2254). (Which could then be clickable with #1535, providing a more obvious place...

> Can you run again with `--debug`? Sure, though it doesn't seem to contain much more information: ``` $ git crecord -m "test" --debug backup 'modified_file.cpp' as '/path/to/repo/.git/record-backups/modified_file.cpp.z7v8fgqy' applying patch...

> I think I’m onto something. What path you’re running `git crecord` in? Root of the checkout or somewhere else? I'm running it from the root of the checkout. I...

I'm still experiencing this. Is there any further information I can provide to help arrive at a diagnosis?

Does [this setting](https://clangd.llvm.org/config.html#fullyqualifiednamespaces) in your `.clangd` help in your case? e.g.: ```yaml Style: FullyQualifiedNamespaces: [ some_namespace ] ```

> Hi, and thanks for using git-crecord 👋 Thanks for the response :) By the way, sorry to mention an unrelated issue here, but do you by chance have any...

What I can tell from this stack trace is that the crash is occurring during clangd's execution of a clang-tidy checker. So a temporary workaround could be to run clangd...

> It's this clang-tidy check: cppcoreguidelines-avoid-const-or-ref-data-members. Ok, so a targeted workaround that keeps other clang-tidy checks running would be to put the following into `.clangd`: ```yaml Diagnostics: ClangTidy: Remove: cppcoreguidelines-avoid-const-or-ref-data-members...