
Hello. I recently downloaded Code Writer and I really enjoy it, specially because I try to use Windows Store apps as much as possible.
I have a suggestion for a feature that I think most IDEs already have: collapsing and expanding the outline.
Here's an example. Imagine you have this C# code:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public void Walk(int meters)
{
//Do some walking
}
}
So, if you collapse the Walk method, you would end up with something like this:
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public void Walk(int meters) {...}
}
Doing this it's easier to browse through large files while looking at all properties and methods of a class.
This also works with other languages, but C# is the one I use most.
I hope you can implement this. Ask me if you need more information.
[Modified 11 years ago]