Sam McCall
Sam McCall
Yeah, concept-constrained params sound good if they can be made to work. There's a performance question (concept checking is template instantiation, which is often multiple milliseconds, check `clang -ftime-trace`). There's...
If we still need to parse 10GB of JSON on startup, I'm not sure we've solved the problem - we want a structure that's efficient to produce and to consume....
Minimal incorrect case is `\x1b[1;2mX\x1b[22m\x1b[2mY`, where Y should be dim: - we need at least one character before the reset (`\x1b[1;2m\x1b[22m\x1b[2mY` is correct) - we need that character to be...
~All LSP operations target a file, and diagnostics are shown in a particular file. That's what "main file" refers to, and it's perfectly well-defined. @njames93 you added much of the...
Hi Heyward, Thanks for doing this, I was actually going to look into adding it today, but hadn't understood the details yet :-) How do you feel about having this...
> Yes, of course, I can transfer it to clangd org Thanks! I've sent you an invite https://github.com/clangd which should allow you to do this. > Semantic Issue is diagnostic...
>> Code completion items show the header > > The header info is came from clangd, do you think it's better to trim by clangd or in coc-clangd? Good question,...
I think the problem is the use of multiple paths due to symlinks. Clangd will not work well if the same file is referred to by multiple names. You'll need...
Sorry about the delay here. There is already a test for this in `test/rust_analyzer/generated_srcs_test`, it's "flaky" in that it always passed on the CI and always failed in my local...
(it looks like there are unrelated failures on buildkite, so I might need help getting this merged)