How can you implement regions a.k.a. code collapse for JavaScript in Visual Studio?
If there are hundreds of lines in javascript, it'll be more understandable using code folding with regions as in vb/C#.
#region My Code
#endregion
|
How can you implement regions a.k.a. code collapse for JavaScript in Visual Studio? If there are hundreds of lines in javascript, it'll be more understandable using code folding with regions as in vb/C#.
| ||||
|
feedback
|
|
Blog entry here explains it and this MSDN question. You have to use Visual Studio 2003/2005/2008 Macros. Copy + Paste from Blog entry for fidelity sake:
| |||||||||||
feedback
|
|
Microsoft now has an extension for VS2010 that provides this functionality: | |||||
feedback
|
|
The JSEnhancements plugin for Visual Studio addresses this nicely. | |||
|
feedback
|
|
Thanks to Roboto for a great answer. I've had good luck with it. Darin Dimitrov also makes a good argument about limiting the complexity of your JS files. Still, I do find occasions where collapsing functions to their definitions makes browsing through a file much easier. Regarding #region in general, this SO Question covers it quite well. I have made a few modifications to the Macro to support more advanced code collapse. This method allows you to put a description after the //#region keyword ala C# and shows it in the code as shown: Example code:
Looks like this:
And this expanded:
Updated Macro:
| |||||||||
feedback
|