Sean McManus
Sean McManus
Yeah, currently, C_Cpp.files.exclude isn't checked when formatting, i.e. it's checked for operations involving global symbols and code analysis (with the additional C_Cpp.codeAnalysis.exclude setting as well). We could potentially add a...
One potential workaround is to have a 2nd workspace folder for the files that shouldn't be formatted (and set it's formatOnSave differently). Another potential workaround if you're using clang-format for...
Yeah, you could change the style to "file" (the default) (or `"file:/.clang-format"`) and put a .clang-format file with ```yaml --- BasedOnStyle: Google ColumnLimit: 100 ``` at the root location where...
If you're using CMake, the recommended way to configure is via the CMake Tools extension, setting it as the configurationProvider. The usage of includePath with "**" is only intended for...
You don't have to use the CMake Tools extension to build -- you can build via a command line if you want. You just set "configurationProvider": "ms-vscode.cmake-tools" and run `CMake:...
Oh, looks like it may require Ninja to be installed? I don't see that in the docs at https://code.visualstudio.com/docs/cpp/CMake-linux . @bobbrow might know more. Ninja speeds up the builds (usually)....
We already support substring search. Can you provide repro details where this is not working?
I don't think VS implements this either. I actually implemented this 8 months ago in response to https://github.com/microsoft/vscode-cpptools/issues/3416 (well, that was for completion instead of symbol search, but the code...
@ppggff No updates. It's not on our schedule to get implemented (more upvotes needed).
@ppggff Not yet. We're working on other features (clang-tidy integration, create definition from declaration, etc.). However, I think it'd be pretty quick for us to add an opt-in setting to...