Comment Plugin
Is there a way to make the comment plugin place it's line comments at
the beginning of each line as opposed to in front of the first non space
character?
I edit python in IntelliJ pretty regularly, but I much prefer to see this:
def snapshot( self, element ):
# create a new snapshot instance
snapshot = RuleScript.Snapshot()
#
rather than this:
#def snapshot( self, element ):
create a new snapshot instance
#snapshot = RuleScript.Snapshot()
#
Thanks - Guy
请先登录再写评论。
I will implement it.
Timur
BTW, you can do it now, though it will require making changes in the source and recompiling.
1. Find CommentTypeMap
2. Find
3. Change it to
Forgot to provide a link (Comment-0.3.3-src.zip): http://sourceforge.net/project/showfiles.php?group_id=80426&release_id=166469