Im thinking this might make a good .Net 2.0 project.
Im programming a lot in Progress, which has its own IDE... which is pretty awful.
Im 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 Im 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 wont throw any errors in any compiler since theyre commented out lines - heck theyll 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 doesnt 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.
Im programming a lot in Progress, which has its own IDE... which is pretty awful.
Im 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 Im 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:
Code:
//RegionBegin: "Variables"
<code within, presumably variables>
//RegionEnd: "Variables"
Which wont throw any errors in any compiler since theyre commented out lines - heck theyll 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 doesnt 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.