new_bin_path += '_arm64' new_tool_path = os.path.join(new_bin_path, 'format', 'clang-format' + gclient_paths.GetExeSuffix()) old_new_tool_path = os.path.join( new_bin_path, 'format', 'clang-format' + gclient_paths.GetExeSuffix()) latest_new_tool_path = os.path.join( f...
Currently, per this documentation, VS Code would look for a .clang-format file in user's workspace and apply those settings. If .clang-format file is not found, it uses its default formatting style shipped with the C/C++ extension. Would it be possible for users to specify the .clang-fo...
/<some_submodule>/.clang-format -fallback-style=LLVM -assume-filename=<some_file_to_be_formatted> # clang-format waits for input on stdin Maybe I should have mentioned that I have set clang_format_path to"C:\\Program Files\\LLVM\\bin\\clang-format.exe", because this probably interferes...
open vscode, write a hello word program and thenformat document See error, vscode cpp extension call theclang-formatfrom the built-in path, but i already have a custom clang-format in my $PATH, please see my below screenshots Expected behavior use my own clang-format v13 to format the cp...