One question though: Block comments are not configured for Python in lang.xml
So I changed the configuration so that this line:
<Language name="python" ext="py pyw" commentLine="#">
became this one:
<Language name="python" ext="py pyw" commentLine="#" commentStart=""""" commentEnd=""""">
(The idea I took from the configuration of Smalltalk where single quote is used.
Nonetheless the comments within those """ my doc """ are not highlighed with configured color.
Any idea?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Update. Actually the new line is:
<Language name="python" ext="py pyw" commentLine="#" commentStart=""""" commentEnd=""""">
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
FOA, I love Notepad++.
One question though: Block comments are not configured for Python in lang.xml
So I changed the configuration so that this line:
<Language name="python" ext="py pyw" commentLine="#">
became this one:
<Language name="python" ext="py pyw" commentLine="#" commentStart=""""" commentEnd=""""">
(The idea I took from the configuration of Smalltalk where single quote is used.
Nonetheless the comments within those """ my doc """ are not highlighed with configured color.
Any idea?
Update. Actually the new line is:
<Language name="python" ext="py pyw" commentLine="#" commentStart=""""" commentEnd=""""">
not again...
well. you got it.
The value for commentStart and commentEnd is &"&"&"
<Language name="python" ext="py pyw" commentLine="#" commentStart="&quot;&quot;&quot;" commentEnd="&quot;&quot;&quot;">
so stupid... why did it replace the & quot; and did not & ?
Try changing 'TRIPLE' and 'TRIPLEDOUBLE' in styler configurator.
Cool. thanks :)
Not very intuitive though