Forum Replies Created
- AuthorPosts
- MattGParticipant
Hi!
Used your delivered default, sure “colapse comments” is on.
If it is turned off, what is not an option for me,
The handling is correctSimply try it by yourself :)
As an example:
– – – – – –
def HelloWorld():
print "Hello World!"
def dummy2():
print "fubar1"
if foo == oof:
""" That some Test
"""
print "fubar2"
print "fold1"
# Just another comment
# and another
if __name__=="__main__":
HelloWorld()
– – – – – – –
If you turn “Make comments collapsible” off
you can fold the indented stuff correctly
– – – – – –
[+] def HelloWorld():[...]
[-] def dummy2():
| print "fubar1"
[+] if foo == oof:[...]
[+] if __name__=="__main__":[...]
– – – – – – —
If you turn “Make comments collapsible” on you get the following
[+] def HelloWorld():[...]
[-] def dummy2():
| print "fubar1"
| if foo == oof:
[-] """ That some Test
| """
| print "fubar2"
| print "fold1"
[-] # Just another comment
| # and another
[+] if __name__=="__main__":[...]
– – – – – –
Worse!By the way it doesnt matter if you use the allowed “””-Comment or # after the if, to be correct after the first indentation.
In case you have a long procedure with comments you cant fold in an intelligent way anymore
Well… in the meantime till there is an solution I’ll have to use my Eclipse.
cheers
MatthiasMattGParticipantHi!
Argh… it can be so easy :->
thanks a lotMatthias
MattGParticipantHi!
Woow… nice work, Snipplets + WordComplete that makes really fun now…
Heheh.. well definitivly the right decission for me to use emeditor.
Keep up that good work!Cheers
MattGMattGParticipantHi!
Simply Perfect…
thanks a lot
MatthiasMattGParticipantHi!
Thanks for your fast reply, would be great to see something like that in a future release.
Another question, would it be possible to “selfmodify” the configuration?
I mean, if I remember right, sorry still a newbie with emeditor, I save my macros with my project, or my “solution”, still not quite familiar with that dependencies and naming.
So I could write a macro which sets a new BackupDirectory for every “project” I have and fire it up if I load that project, modify my settings and would have a little bit tricky workaround.Fiction or would that be a possible way, hehehe didnt say that would simple ;-) ?
cheers
MatthiasMattGParticipantHi!
Nice Idea!
Yes it helps, I understand its a bit difficult with that
–[[….]]
and — stuff.Hehe… still my favorite editor
Cheers
Matthias - AuthorPosts