How to change/turn off highlighting the entire argument in a re.compile() statement

Answered

How can I change/turn off the automatic highlighting of the regex argument in a re.compile()?

simple example: 

import re

question_mark = re.compile(r'(?P<question_mark>\?\)')

 

 

I want to stop highlighting of: r'(?P<question_mark>\?\)'

1
2 comments

Hi mountain_goat! Unfortunately it's not possible at the moment. I created a feature request in our bug tracker: PY-25812. Please follow and vote for it.

1
Avatar
Permanently deleted user

Thanks Pavel! I voted and followed the request. 

0

Please sign in to leave a comment.