Regions/code collapse in Javascript in Visual Stud

2019-03-09 11:03发布

Is it possible to create code regions in JS files in Visual Studio 2010?

This method works in 2005, but I can't get working in 2010.

8条回答
Viruses.
2楼-- · 2019-03-09 11:36

There's an interesting post here : http://blog.devarchive.net/2008/04/using-region-directive-with-javascript.html on how to do this using Macros in Visual Studio.

Hope that help.

Update I just realised that someone has already referenced this link in the comments.

查看更多
Summer. ? 凉城
3楼-- · 2019-03-09 11:37

In VS 2015 you can just create a block around your "region" like this

{ //My little region
  function misc()...
  var x = '';
  //etc...
  ...
}

Then just collapse that block. Probably on all older versions of Visual Studio as well.

查看更多
神经病院院长
4楼-- · 2019-03-09 11:38

Another great Visual Studio 2012-Extension is Web Essentials 2012. There are a bunch of cool tools for even TypeScript, LESS and CoffeeScript.

http://vswebessentials.com/

查看更多
我命由我不由天
5楼-- · 2019-03-09 11:41

Advanced JavaScript Outlining for Visual Studio 11 is now available for VS2012 through the Extension Manger, or at the URL

http://visualstudiogallery.msdn.microsoft.com/4be701d8-af03-40a4-8cdc-d2add5cde46c?SRC=VSIDE

查看更多
成全新的幸福
6楼-- · 2019-03-09 11:43

Even though VS extensions installed, I had a unique problem of some of the script blocks not outlining properly, later found that its because of the @Url.Content tag used in the script, simply replaced it with simple string url, the outlining worked....thought of sharing if it helps someone

查看更多
小情绪 Triste *
7楼-- · 2019-03-09 11:52

Here is a very cool VS2010 extension for Javascript and CSS outlining http://jsoutlining.codeplex.com/

查看更多
登录 后发表回答