1. How about block commenting in EU 4.0?
- Posted by eumini Aug 27, 2008
- 868 views
- Last edited Aug 28, 2008
EU Developers,
Would it be too difficult to add block commenting to EU 4.0? Trial and error coders like me would appreciate it. Please consider.
Thanks.
'Debo
2. Re: How about block commenting in EU 4.0?
- Posted by DerekParnell (admin) Aug 28, 2008
- 856 views
Would it be too difficult to add block commenting to EU 4.0? Trial and error coders like me would appreciate it.
It is already on the TODO list. It probably won't make v4.0 but should be okay for the version after that.
3. Re: How about block commenting in EU 4.0?
- Posted by codepilot Aug 28, 2008
- 865 views
So, how much longer till 4.0 launch? What's left to do?
4. Re: How about block commenting in EU 4.0?
- Posted by Salix Aug 28, 2008
- 872 views
without define COMMENT ifdef COMMENT then Give a try... what about this? end ifdef
But some of the editors can handle line comments very user friendly. Context (Win32) for example can change the comment status of marked lines for a simple Ctrl-Shift-C key combination.
Salix
5. Re: How about block commenting in EU 4.0?
- Posted by shfrance Aug 28, 2008
- 838 views
Edita will comment/uncomment every line highlighted on one click.
6. Re: How about block commenting in EU 4.0?
- Posted by Salix Aug 28, 2008
- 838 views
Gedit has a "Code comment" plugin that lets you do the same for Ctrl-M ...
7. Re: How about block commenting in EU 4.0?
- Posted by menno Aug 28, 2008
- 820 views
The normal single line is .
Why not take as blockcomment all line between a -+ ...... -+
-+ bla bla bla bla -+
This simple combination will never be use for something usefull .
(This is what implemented in PEU)
Greatings Menno .
8. Re: How about block commenting in EU 4.0?
- Posted by euphoric (admin) Aug 28, 2008
- 845 views
The normal single line is .
Why not take as blockcomment all line between a -+ ...... -+
-+ bla bla bla bla -+
This simple combination will never be use for something usefull .
(This is what implemented in PEU)
Greatings Menno .
Or even just make it a , right?
++ block comment begins Here are my comments. Please ignore them, oh speedy interpreter. ++ -- block comment ends
9. Re: How about block commenting in EU 4.0?
- Posted by CChris Aug 29, 2008
- 816 views
The normal single line is .
Why not take as blockcomment all line between a -+ ...... -+
-+ bla bla bla bla -+
This simple combination will never be use for something usefull .
(This is what implemented in PEU)
Greatings Menno .
Or even just make it a , right?
++ block comment begins Here are my comments. Please ignore them, oh speedy interpreter. ++ -- block comment ends
Yep, I'd like this rather.
Or a line matching ^-{4,} (4 hyophens or more at physical line start).
Note: I liked Salix's solution at first. But, since the ifdef'ed out text is parsed somehow, there could be issues. Specially if it contains the words end ifdef. And locating the bug would be quite dificult.
CChris