Thread: [Pydev-users] [Users] RE: Comment colour in pydev
Brought to you by:
fabioz
From: SourceForge.net <no...@so...> - 2011-02-23 09:50:58
|
The following forum message was posted by madhadacc at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/1538544: Hi Fabio, can we have different colors for # comments and ## comments? So we could have real comments in maybe green an "outcommented" lines in maybe light grey. That would be great! Thank you for your work, Martin |
From: SourceForge.net <no...@so...> - 2006-07-19 16:37:44
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3828760 By: fabioz In the preferences: window > preferences > pydev On earlier versions of pydev, that preferences page was kind of big, so, you might have to stretch it depending on the resolution you're using (on the latest versions this was changed). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-19 16:39:50
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3828762 By: drmaples Window > Preferences. click on Pydev in the "Appearance color options:" change comments to whatever color you want. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2006-07-19 17:13:56
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3828817 By: jxb Thanks, Fabio, Darrell! I had looked there already but I was expanding the '+' so never saw the top level. Doh... John ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2008-05-27 21:42:54
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4990598 By: haig51 Why don't multi-line comments conform to the same syntax highlighting preferences as the single-line comments, instead of the string coloring. My comments preference is grey, and string is green. So shouldn't multi-line comments (""" .... """) be grey also, not green like strings ? Is this an overlooked bug or do people want their multi-line comments to look like strings, not comments ? ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2008-05-27 21:50:29
|
Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=4990611 By: fabioz If you use ''' ''' in python, that's a string in the same way that ' ' (so, you can assign it to a var, etc). In functions / classes, the first string is considered a docstring and is assigned to the function / class (but it could be a string with ' ' also, and doesn't necessarily need a ''' '''). So, ''' ''' is actually a string and # is the only comment that python has (there are no multi-line comments in python). Cheers, Fabio ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=293649 |
From: SourceForge.net <no...@so...> - 2011-02-23 10:44:28
|
The following forum message was posted by fabioz at http://sourceforge.net/projects/pydev/forums/forum/293649/topic/1538544: Please enter a feature request for that. Cheers, Fabio |