November 13, 2021
On Friday, 12 November 2021 at 23:45:38 UTC, forkit wrote:
> On Friday, 12 November 2021 at 22:33:00 UTC, forkit wrote:
>>
>> I use my own custom GUI IDE (winforms/C#) which I developed myself, cause nothing out there did what it wanted it to do.
>>
>> I call it EZ Compiler.
>>
>> Here is screen dump of it (not sure how long link lasts)
>>
>> https://imgur.com/a/PvBm2q4
>
> This pic is much better pic of it, as it shows 'actual' D code ;-)
>
> https://imgur.com/a/8mm0Fdi

Try ScintillsNet. You can have the luxury of syntax coloring.
November 13, 2021
On Saturday, 13 November 2021 at 22:13:55 UTC, Vinod K Chandran wrote:

>
> Try ScintillsNet. You can have the luxury of syntax coloring.

Sorry, "ScintillaNet".


November 13, 2021
On Saturday, 13 November 2021 at 22:13:55 UTC, Vinod K Chandran wrote:
>
> Try ScintillsNet. You can have the luxury of syntax coloring.

grr!! I really hate syntax coloring.. or anything, that does anything, to my code... whatsoever. These kinds of features are all competing for my attention, and I find it really annoying.

That's (yet another reason) why I wrote my own IDE.

Actually I do syntax color one thing, and one thing only...

"main("

 .. the background of that text is highlighted in bright green, so I know straight away where main function is.

but thanks for the suggestion :-)

November 14, 2021
On Saturday, 13 November 2021 at 23:58:22 UTC, forkit wrote:
> grr!! I really hate syntax coloring.. or anything, that does anything, to my code... whatsoever. These kinds of features are all competing for my attention, and I find it really annoying.

Most syntax coloring schemes I find overpowering, but I think at a minimum, having the comments a different color so that it is instantly obvious what is code and what is not is helpful.
November 13, 2021
On Sat, Nov 13, 2021 at 11:58:22PM +0000, forkit via Digitalmars-d wrote:
> On Saturday, 13 November 2021 at 22:13:55 UTC, Vinod K Chandran wrote:
> > 
> > Try ScintillsNet. You can have the luxury of syntax coloring.
> 
> grr!! I really hate syntax coloring.. or anything, that does anything, to my code... whatsoever. These kinds of features are all competing for my attention, and I find it really annoying.

Wow. I'm surprised that I'm not the only one here who hates syntax highlighting. :-D


> That's (yet another reason) why I wrote my own IDE.

I just use Vim. ;-)  Linux is my IDE. :-P


> Actually I do syntax color one thing, and one thing only...
> 
> "main("
> 
>  .. the background of that text is highlighted in bright green, so I
>  know straight away where main function is.
[...]

I don't even need that, I just type `/main` and it takes me right there. :-D  No highlighting necessary, I can code over ssh to a remote host. Trying to do that with an IDE is ... painfully slow, among other painful things.


T

-- 
Recently, our IT department hired a bug-fix engineer. He used to work for Volkswagen.
November 15, 2021
On Sunday, 14 November 2021 at 02:04:04 UTC, H. S. Teoh wrote:
>
> I just use Vim. ;-)  Linux is my IDE. :-P
>
>
> T

Same here
1 2 3
Next ›   Last »