-
I'm trying to create a filter to compare only This is what i got: ## This is a directory/file filter template for WinMerge
name: C++ Files
desc: Filter for C++ source and header files
## This is an exclusive filter
## (it lets through only matching files)
def: exclude
f: \.(cpp|h)$ ## To compare only .cpp and .h files
d: \\(?<!\.vshistory) Its comparing only |
Beta Was this translation helpful? Give feedback.
Answered by
sdottaka
Aug 27, 2024
Replies: 1 comment 3 replies
-
If you change |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
derricck
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you change
d: \\(?<!\.vshistory)
tod: \\(?<!\.vshistory)$
it should work as expected.