Nano's syntax highlighting engine has a special format for multi-line matches but is too greedy. If possible, how can I modify the following rule, present in my Python syntax file, to be "more humble".
color brightred start="'''" end="'''"
Given the Python code:
test = '''
test string
'''
print test
test = '''
another string
'''
print test
Nano will highlight from the first ''' straight to the last ''', masking the inner print test
I have tried various regex tricks but none have been successful. I'm not sure if the normal highlighting syntax can be flagged to allow newlines to be matched by the dot (similar to Python's regex (?x)) but if so, the following would likely work:
color brightred "(?x)[ru]?'''.*?'''"

(?x)enables comment mode - is is(?s)which enables dotall mode, to allow.to match newline. – Peter Boughton Jul 26 at 15:23