Hi, great program. It reminds me of the VS 2005 IDE (which I like alot). I also use ultraedit but it doesn't look like the VS 2005 IDE like with twistpad. I'm starting to like twistpad more with each use.
The one thing I wish it has is the ablility to align text in column. Here's an example:
[code]
int dog;
char * cat;
[/code]
now I want it to sort like so:
int dog;
char * cat;
note the "d" in dog lines up with the "c" in cat (I don't know if this forum lines up the spaces correctly in my post). I haven't found a way to do this in VS 2005 IDE or ultraedit. So, having this feature in twistpad would rock.
Also, make it generic so that one can use it for functions as well:
char * cat_meow(int whichCat);
void barking(char thisDog);
so look like:
char * cat_meow(int whichCat);
void barking(char thisDog);
The "c" in cat_meow lines up the "b" in barking. Anyway, I hope my crude explanation makes sense to you. |