I want some automatic code folding for if()
,try()
etc.
It should be some code editor feature (like one in VS for methods, etc).
If I have this:
- public frmMain()
| {
| InitializeComponent();
| if (true)
| {
| try ()
| {
| }
| catch()
| {
| }
| }
| }
I want to get this:
- public frmMain()
| {
| InitializeComponent();
- if (true)
| {
- try ()
| {
| }
- catch()
| {
| }
| }
| }
Even Notepad++ can do this!
For C#;
For C/C++;
Tested in VS2010
I don't normally post things I've not personally used, but in this case, I was able to find an add-in that Jay Flowers wrote which seems to do exactly what you want. Currently, it can be located and downloaded here, with source in case you wanted to add more features or change its functionality.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With