vote up 1 vote down star

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]?'''.*?'''"
flag
(?x) enables comment mode - is is (?s) which enables dotall mode, to allow . to match newline. – Peter Boughton Jul 26 at 15:23

1 Answer

vote up 0 vote down

Not sure I completely understand what you're trying to match, but can you do this:

color brightred "(?s)[ru]?'''((?!''').)+'''"

Don't know that a negative lookahead would work if lazy matching doesn't, but worth a try?


Actually, just re-read your question - maybe try this first:

color brightred "(?s)[ru]?'''.+?'''"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.