I'm thinking this might make a good .Net 2.0 project.
I'm programming a lot in Progress, which has it's own IDE... which is pretty awful.
I'm looking for a basic IDE with the most basic features: find, replace, tabbed formatting (really being spaces), keyword highlighting, line numbers.
Thats all basic stuff that I could find in many freeware or low priced-ware mini IDEs.
Other things I'm looking for:
Commentable IDE Code - basically every language has a way to comment a line. So you can put a comment line in and include a command for the IDE. Sort of similar to how you insert Javascript into HTML comments.
so you could do this:
Which won't throw any errors in any compiler since they're commented out lines - heck they'll still be helpful comments in the code as well.
doing this I would like to add a few features that would help me in Progress & PHP: Code Regions and Include Regions (basically displays what is in another text file)
I would want to be able to designate many things within a settings file for each language such as what opens/closes a Comment (VB it would be ' & the end of a line).
It doesn't seem terribly hard. Maybe some sort of code completion from the list of keywords as an afterthought.
Definately ways to help differentiate a loop/if...then statement in shading or something like that.
I'm programming a lot in Progress, which has it's own IDE... which is pretty awful.
I'm looking for a basic IDE with the most basic features: find, replace, tabbed formatting (really being spaces), keyword highlighting, line numbers.
Thats all basic stuff that I could find in many freeware or low priced-ware mini IDEs.
Other things I'm looking for:
Commentable IDE Code - basically every language has a way to comment a line. So you can put a comment line in and include a command for the IDE. Sort of similar to how you insert Javascript into HTML comments.
so you could do this:
Visual Basic:
'//RegionBegin: "Variables"
<code within, presumably variables>
'//RegionEnd: "Variables"
Which won't throw any errors in any compiler since they're commented out lines - heck they'll still be helpful comments in the code as well.
doing this I would like to add a few features that would help me in Progress & PHP: Code Regions and Include Regions (basically displays what is in another text file)
I would want to be able to designate many things within a settings file for each language such as what opens/closes a Comment (VB it would be ' & the end of a line).
It doesn't seem terribly hard. Maybe some sort of code completion from the list of keywords as an afterthought.
Definately ways to help differentiate a loop/if...then statement in shading or something like that.