Update objdiff watch patterns to include more extensions (#61)

This commit is contained in:
LagoLunatic 2025-08-23 17:36:39 -04:00 committed by GitHub
parent f512971b4f
commit d193664911
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 1 deletions

View File

@ -16,6 +16,8 @@
"files.trimFinalNewlines": true,
"files.associations": {
"*.inc": "c",
"*.pch": "c",
"*.pch++": "cpp",
".clangd": "yaml"
},
// Disable C/C++ IntelliSense, use clangd instead

View File

@ -1545,13 +1545,20 @@ def generate_objdiff_config(
"build_target": False,
"watch_patterns": [
"*.c",
"*.cc",
"*.cp",
"*.cpp",
"*.cxx",
"*.c++",
"*.h",
"*.hh",
"*.hp",
"*.hpp",
"*.inc",
"*.hxx",
"*.h++",
"*.pch",
"*.pch++",
"*.inc",
"*.py",
"*.yml",
"*.txt",