Jump to page: 1 2
Thread overview
DCode editor
Jul 17, 2005
Vathix
Jul 18, 2005
Manfred Nowak
Jul 18, 2005
Vathix
Jul 18, 2005
Vathix
Jul 17, 2005
Chris Sauls
Jul 18, 2005
Vathix
Jul 18, 2005
Chris Sauls
Jul 19, 2005
jicman
Jul 19, 2005
Vathix
Jul 20, 2005
jicman
Oct 13, 2005
Robert Jones
Oct 15, 2005
Vathix
Oct 28, 2005
Robert Jones
Nov 02, 2005
Vathix
DCode 1.1
Jul 21, 2005
Vathix
Jul 21, 2005
James Dunne
Jul 22, 2005
jicman
July 17, 2005
I made a simple D code editor, http://www.dprogramming.com/dcode.php

The syntax coloring should completely support D syntax. If not, let me know what I missed :>
July 17, 2005
"Vathix" <chris@dprogramming.com> wrote in message news:op.st19wonil2lsvj@esi...
>I made a simple D code editor, http://www.dprogramming.com/dcode.php
>
> The syntax coloring should completely support D syntax. If not, let me know what I missed :>

Nicely done :)  I especially like the correct coloring of /+ +/ style comments.  It'd be nice to be able to change the colors, though, as lots of white hurts my eyes, and the colors are so muted that it's almost impossible to see the syntax highlighting.

Add some execute macro keys a la ConText, and it'd be perfect!


July 17, 2005
Vathix wrote:
> I made a simple D code editor, http://www.dprogramming.com/dcode.php

Very nice.  I tried opening some of the more... interesting sources I have laying around, and it did just fine.  I rather like the little gray left-side border on indented scopes.  It happens to be a perfect visual complement to my typical coding style.

Just four things keep it from "perfect" for me...
A) ability to open multiple files
B) some kind of 'cheap and cheesy' Projects support (a la EditPlus for instance)
C) customizable syntax coloring, able to set different styles for different keywords
D) braces/parentheses-matching.

I won't ask for folding... I never really use it, even in C#... it just feels awkward to me.  Also, do you think you might add other styling options to the syntax highlighting, aka bold, italic, underline?  I'm too much of a Borland user, I like certain keywords bolded.  ;)

-- Chris Sauls
July 18, 2005
"Jarrett Billingsley" <kb3ctd2@yahoo.com> wrote:

[...]
> I especially like the correct coloring of /+ +/
> style comments.

Sorry. "/+/++/+/" isnt switching off the comment highlighting correctly.

-manfred
July 18, 2005
On Sun, 17 Jul 2005 11:21:26 -0400, Jarrett Billingsley <kb3ctd2@yahoo.com> wrote:

> "Vathix" <chris@dprogramming.com> wrote in message
> news:op.st19wonil2lsvj@esi...
>> I made a simple D code editor, http://www.dprogramming.com/dcode.php
>>
>> The syntax coloring should completely support D syntax. If not, let me
>> know what I missed :>
>
> Nicely done :)  I especially like the correct coloring of /+ +/ style
> comments.  It'd be nice to be able to change the colors, though, as lots of
> white hurts my eyes, and the colors are so muted that it's almost impossible
> to see the syntax highlighting.

Working on it now :)

>
> Add some execute macro keys a la ConText, and it'd be perfect!

I'll think about it..
July 18, 2005
On Sun, 17 Jul 2005 16:59:25 -0400, Chris Sauls <ibisbasenji@gmail.com> wrote:

> Vathix wrote:
>> I made a simple D code editor, http://www.dprogramming.com/dcode.php
>
> Very nice.  I tried opening some of the more... interesting sources I have laying around, and it did just fine.  I rather like the little gray left-side border on indented scopes.   It happens to be a perfect visual complement to my typical coding style.
>
> Just four things keep it from "perfect" for me...
> A) ability to open multiple files

I was debating this because it might not be considered a simple editor with this feature. I'm thinking I want it anyway.

>
> B) some kind of 'cheap and cheesy' Projects support (a la EditPlus for instance)

That is pretty cheesy, but I like the simplicity.

>
> C) customizable syntax coloring, able to set different styles for different keywords

Do you mean like separate colors for each of: int, align, and private?

>
> D) braces/parentheses-matching.

yea, I'll look into it. I like it as well.

>
> I won't ask for folding... I never really use it, even in C#... it just feels awkward to me.

Same here.

>
> Also, do you think you might add other styling options to the syntax highlighting, aka bold, italic, underline?  I'm too much of a Borland user, I like certain keywords bolded.  ;)

yea, sure. I just don't particularly like that it causes things to be unaligned.
July 18, 2005
On Sun, 17 Jul 2005 22:22:38 -0400, Manfred Nowak <svv1999@hotmail.com> wrote:

> "Jarrett Billingsley" <kb3ctd2@yahoo.com> wrote:
>
> [...]
>> I especially like the correct coloring of /+ +/
>> style comments.
>
> Sorry. "/+/++/+/" isnt switching off the comment highlighting
> correctly.

Thanks, I have it fixed.
July 18, 2005
Vathix wrote:
>> A) ability to open multiple files
> I was debating this because it might not be considered a simple editor  with this feature. I'm thinking I want it anyway.

Nah... no introspect, no "class browser", no autocompletion or any of that other fancy jazz... so its still a simple editor.  :)

>> C) customizable syntax coloring, able to set different styles for  different keywords
> Do you mean like separate colors for each of: int, align, and private?

Essentially, yes.  You could classify the keywords for simplicity, like one group for primitive types, another for attributes, one for statement keywords (like 'if', 'while', 'case'), etc.  That'd probably be a fair bit more straightforward than allowing each individual keyword to be customized... not to mention a lot faster to edit.  Could even just store the colors in a file that's parsed at loadtime.  Users could just edit the color codes in said file, then reload (or else provide a reload command in the menu somewhere).

>> Also, do you think you might add other styling options to the syntax  highlighting, aka bold, italic, underline?
> yea, sure. I just don't particularly like that it causes things to be  unaligned.

That is true.  Its unessential anyhow if there's good varied coloring.

-- Chris Sauls
July 19, 2005
Is it D source?  Or c?  Just curious...

josé

Vathix says...
>
>I made a simple D code editor, http://www.dprogramming.com/dcode.php
>
>The syntax coloring should completely support D syntax. If not, let me know what I missed :>


July 19, 2005
On Tue, 19 Jul 2005 01:54:47 -0400, jicman <jicman_member@pathlink.com> wrote:

>
> Is it D source?  Or c?  Just curious...

The text box is C++ and the rest is D.
« First   ‹ Prev
1 2