digitalmars.D.announce - DCode editor
- Vathix (3/3) Jul 17 2005 I made a simple D code editor, http://www.dprogramming.com/dcode.php
- Jarrett Billingsley (7/10) Jul 17 2005 Nicely done :) I especially like the correct coloring of /+ +/ style
- Manfred Nowak (5/7) Jul 17 2005 Sorry. "/+/++/+/" isnt switching off the comment highlighting
- Vathix (3/9) Jul 18 2005 Thanks, I have it fixed.
- Vathix (4/17) Jul 18 2005 Working on it now :)
- Chris Sauls (14/15) Jul 17 2005 Very nice. I tried opening some of the more... interesting sources I ha...
- Vathix (10/28) Jul 18 2005 I was debating this because it might not be considered a simple editor
- Chris Sauls (12/22) Jul 18 2005 Nah... no introspect, no "class browser", no autocompletion or any of th...
- jicman (3/6) Jul 18 2005 Is it D source? Or c? Just curious...
- Vathix (3/4) Jul 18 2005 The text box is C++ and the rest is D.
- jicman (4/9) Jul 19 2005 Very nice...
- Robert Jones (19/27) Oct 13 2005 First I have a some questions of my own:
- Vathix (10/30) Oct 15 2005 It's the existing Scintilla text box control with modifications; I didn'...
- Robert Jones (6/42) Oct 28 2005 --
- Vathix (4/11) Nov 01 2005 On Fri, 28 Oct 2005 15:54:39 -0400, Robert Jones
- Vathix (1/1) Jul 21 2005 Version 1.1 with customized colors - http://www.dprogramming.com/dcode.p...
- James Dunne (4/5) Jul 21 2005 Add intellisense support and I'll fall to my knees and worship the groun...
- jicman (2/8) Jul 21 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 :>
Jul 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!
Jul 17 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
Jul 17 2005
On Sun, 17 Jul 2005 22:22:38 -0400, Manfred Nowak <svv1999 hotmail.com> wrote:"Jarrett Billingsley" <kb3ctd2 yahoo.com> wrote: [...]Thanks, I have it fixed.I especially like the correct coloring of /+ +/ style comments.Sorry. "/+/++/+/" isnt switching off the comment highlighting correctly.
Jul 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...Working on it now :)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!I'll think about it..
Jul 18 2005
Vathix wrote:I made a simple D code editor, http://www.dprogramming.com/dcode.phpVery 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. 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
Jul 17 2005
On Sun, 17 Jul 2005 16:59:25 -0400, Chris Sauls <ibisbasenji gmail.com> wrote:Vathix wrote:I was debating this because it might not be considered a simple editor with this feature. I'm thinking I want it anyway.I made a simple D code editor, http://www.dprogramming.com/dcode.phpVery 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 filesB) 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 keywordsDo 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.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.
Jul 18 2005
Vathix wrote:Nah... no introspect, no "class browser", no autocompletion or any of that other fancy jazz... so its still a simple editor. :)A) ability to open multiple filesI was debating this because it might not be considered a simple editor with this feature. I'm thinking I want it anyway.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).C) customizable syntax coloring, able to set different styles for different keywordsDo you mean like separate colors for each of: int, align, and private?That is true. Its unessential anyhow if there's good varied coloring. -- Chris SaulsAlso, 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.
Jul 18 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 :>
Jul 18 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.
Jul 18 2005
Very nice... I would like to be able to have a dark backgroung. Please. :-) White kills my eyes. Vathix says...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.
Jul 19 2005
Vathix said the following on 7/19/2005 2:17 AM:On Tue, 19 Jul 2005 01:54:47 -0400, jicman <jicman_member pathlink.com> wrote:First I have a some questions of my own: 1. Why is the text box written in C++ and not D? 2. Also do you have plans to release the source code and if so under what license? 3. How soon will DCode 1.3 be out? 4. Will you be adding syntax highliting for assembly(inline/external), HTML(for embedded D code), and DMDScript? Now with that out of the way, I'm currently using the latest available version DCode 1.2 and its really good. It may lack some features that gvim 6.3 has that I like such as folding; but I understand you do intend to had other features such as the ability to call build which would be great. DCode works real well, loads faster than gvim 6.3, and at the moment is written mostly in D. -- Robert Jones robertjones21 HotPOP.com rjones21.freeshell.org "Seek out the truth, only if you have the courage to accept it"Is it D source? Or c? Just curious...The text box is C++ and the rest is D.
Oct 13 2005
On Thu, 13 Oct 2005 14:51:19 -0400, Robert Jones <robertjones21 HotPOP.com> wrote:Vathix said the following on 7/19/2005 2:17 AM:It's the existing Scintilla text box control with modifications; I didn't want to make my own because that would take too long.On Tue, 19 Jul 2005 01:54:47 -0400, jicman <jicman_member pathlink.com> wrote:First I have a some questions of my own: 1. Why is the text box written in C++ and not D?Is it D source? Or c? Just curious...The text box is C++ and the rest is D.2. Also do you have plans to release the source code and if so under what license?Not sure.. but I usually go with libpng/zlib license.3. How soon will DCode 1.3 be out?I've been a bit busy lately and haven't spent much time on my D stuff, so I don't know.4. Will you be adding syntax highliting for assembly(inline/external), HTML(for embedded D code), and DMDScript?Maybe inline assembly, less likely HTML and DMDScript.Now with that out of the way, I'm currently using the latest available version DCode 1.2 and its really good. It may lack some features that gvim 6.3 has that I like such as folding; but I understand you do intend to had other features such as the ability to call build which would be great. DCode works real well, loads faster than gvim 6.3, and at the moment is written mostly in D.Folding should be easy, just seems like very few even like it. - Chris
Oct 15 2005
In article <op.sypbiotyl2lsvj esi>, Vathix says...On Thu, 13 Oct 2005 14:51:19 -0400, Robert Jones <robertjones21 HotPOP.com> wrote:If I rewrote the text box control in D would you consider using it?Vathix said the following on 7/19/2005 2:17 AM:It's the existing Scintilla text box control with modifications; I didn't want to make my own because that would take too long.On Tue, 19 Jul 2005 01:54:47 -0400, jicman <jicman_member pathlink.com> wrote:First I have a some questions of my own: 1. Why is the text box written in C++ and not D?Is it D source? Or c? Just curious...The text box is C++ and the rest is D.-- Robert Jones robertjones21 HotPOP.com rjones21.freeshell.org (A fansite for my fav anime)2. Also do you have plans to release the source code and if so under what license?Not sure.. but I usually go with libpng/zlib license.3. How soon will DCode 1.3 be out?I've been a bit busy lately and haven't spent much time on my D stuff, so I don't know.4. Will you be adding syntax highliting for assembly(inline/external), HTML(for embedded D code), and DMDScript?Maybe inline assembly, less likely HTML and DMDScript.Now with that out of the way, I'm currently using the latest available version DCode 1.2 and its really good. It may lack some features that gvim 6.3 has that I like such as folding; but I understand you do intend to had other features such as the ability to call build which would be great. DCode works real well, loads faster than gvim 6.3, and at the moment is written mostly in D.Folding should be easy, just seems like very few even like it. - Chris
Oct 28 2005
On Fri, 28 Oct 2005 15:54:39 -0400, Robert Jones <Robert_member pathlink.com> wrote: ...Sure ;)If I rewrote the text box control in D would you consider using it?1. Why is the text box written in C++ and not D?It's the existing Scintilla text box control with modifications; I didn't want to make my own because that would take too long.
Nov 01 2005
Version 1.1 with customized colors - http://www.dprogramming.com/dcode.php
Jul 21 2005
In article <op.st9jp1h6l2lsvj esi>, Vathix says...Version 1.1 with customized colors - http://www.dprogramming.com/dcode.phpAdd intellisense support and I'll fall to my knees and worship the ground you walk on =P. But seriously, great job so far!
Jul 21 2005
WOW! Very nice... James Dunne says...In article <op.st9jp1h6l2lsvj esi>, Vathix says...Version 1.1 with customized colors - http://www.dprogramming.com/dcode.phpAdd intellisense support and I'll fall to my knees and worship the ground you walk on =P. But seriously, great job so far!
Jul 21 2005