Richard Kim
Richard Kim
I submitted https://github.com/ch1bo/flycheck-clang-tidy/pull/14 to address the reported problem.
I use spacemacs. Clang 7 on CentOS 7. I can't share source code that I tested on so far. If it would help, I can test drive clang-tidy on llvm...
I built llvm using latest main branch source code as of yesterday. Using clang-tidy from this build, I encounter the same failure as before on llvm-project/llvm/lib/Analysis/BlockFrequencyInfo.cpp file. If I use...
I added toggle via https://github.com/ch1bo/flycheck-clang-tidy/pull/15 However this is a hack that I came up with because I don't know a better way. I don't think this should be checked in....
Yes. I tried not setting it, as well as to "." since `compile_commands.json` is at the project root directory. Nothing I tried worked. I also tried setting it to absolute...
clang-tidy takes up to a minute or more to run on my code, so I have no plans to have run it on code of an unsaved buffer.
By adding debug code shown below to flycheck, I learned that compilation database was not being found even on Ubuntu 20.04. ```diff diff --git a/flycheck.el b/flycheck.el index b88335b5..07ce64bd 100644 ---...
Yes this works. However this does not sit well with me. Each time some other package sets up `display-buffer-alist` and it does not work, I have to once again update...
@bmag Could you resolve the conflict so that your change can be checked into this git repo so that spacemacs can use this repo instead of your custom repo? I...
Thanks for your pointers. I added one advice based on one of your suggestions as shown below. It is a bit crude, but it works if ggtags-find-definition is called. However...