Sam McCall
Sam McCall
Yeah, that's the summary of concerns, but if you want to experiment with it that would be great! I think the starting point to try is: - this is going...
If a filename match can't be found, we fall back to which header declares the symbols defined in this file. encoder.c implements `x264_encoder_reconfig_apply` declared in ratecontrol.h. The heuristics could stand...
We were trying to puzzle out what's going on with the crash. My understanding is it's a skew between the AST and sources seen by SourceManager: - we build a...
I believe PCH storage respects any of the environment variables: `const char *EnvironmentVariables[] = {"TMPDIR", "TMP", "TEMP", "TEMPDIR"};` at least on Unix.
> Make clangd strip ABI related flags coming from compilation databases, as they should not effect syntax only actions I'm not familiar with the `-mabi` flag, but LP64 is a...
Huh, I was certain that clang-format's --fallback-style was parsed the same way as --style, but it seems --fallback-style must be a predefined style (and clangd follows clang-format here). We could...
(This is a clangd bug/feature)
We'll almost certainly address this when we add config files, allowing something like: ``` Format: FallbackStyle: BasedOnStyle: LLVM IndentWidth: 4 ``` to be placed in a dotfile. It's unlikely we'll...
IIRC we had a plan of treating overload sets as a single renamable unit, in which case the would make sense (though of course we never got to it so...
We should add more details and token types. Things that are easily lexically derived (such as preprocessor defines and doxygen tags) don't need to be in the language server I...