I am using the 16.1 MacOS version and the regular expression editor. I would like to capture the following code block example:
type yellow {
yellow green
green yellow
sunshine yellow
}
In the regex editor I can capture "type yellow {" with this regex (type.*) but because everything else is after a line break I cannot go farther. Or I am ok with ({.*}) which works if it is all on a single line but the option \\s (which adds the multi-string or single-line-mode) in some flavors of regex is not working except to match an extra space. I have also tried "\\s\\S" but that does not work either. Is there another method to match everything including line break/newline characters between the brackets?