JScript Editor Extensions

Free

Contains a number of extensions for the JScript editor in Visual Studio 2010.

(66) Review
Visual Studio
2010
Download (205,892)
3/31/2011
1.1.2
View
E-mail Twitter del.icio.us Digg Facebook
Add To Favorites
Description
Reviews (66)
Q and A (18)
Sign in to Write a Review
Sort By:

by D. Chatterjee | Mon 6:30 AM

Works nice with 2010

by The.Geoist | May 14 2013

Not available for 2012, get it together.

by Xpert360 | March 17 2013

Getting back into HTML Javascript from C# this is a big help.

by Hakan ALTINBAŞ | October 18 2012

by Chanandco | October 10 2012

Great stuff. Can we tap into the context menu as an upgrade for outlining -> collapse to definition etc.?

Great work, keep it up.

by Deepak Giri | October 03 2012

by V.P.K | September 04 2012

Nice extension ! Exactly what i was looking for !

by sam.trimble | August 29 2012

Overall some very helpful extensions for working with JS.

It would be even better if the outlining remembered which blocks were open/closed. That way I wouldn't have to re-close everything I'm not working with each time the file is opened...

by Nima Charkhgard | August 05 2012

Thanks for creating this program

by SegaWang | July 26 2012

magic javascript plugin tool~

by Mobilize Cloud | July 05 2012

Awesome plug in.

by Sinto | April 03 2012

Very usefull. Really helps when work with large JavaScript file. Must have for Visual Studio 2010 JavaScript developers.

by DaveGIS | February 23 2012

Fantastic A description of how to implement region on the main page would be great:

//#region InputHandler
myFunction: function(e) {
}
};
//#endregion InputHandler

by Ove Andersen | January 16 2012

by UmairP | December 21 2011

This is must have extension for Java Script developers who are used to C#/VB code. I needed something like this badly.
It would have been better if the shortcut key CTRL+ M + O to collapse outline worked with it too. It would have been awesome.

by Daniel Cheida | November 04 2011

Great

by Santhosh Sivarajan- | November 03 2011

by DigitalSamurai | October 26 2011

Rocks!

by EdSF1 | October 15 2011

This is great a addition to my personal view of the "king of IDEs". It's one of those "why haven't other tools done this, its so mind numbingly obvious" pet peeves, that finally gets resolved...by Visual Studio no less!

I don't think I'll ever need any other dev ide - obviously based on the platforms I work in. One might say that means its "too Microsoft-ty"..perhaps, but with Javascript becoming 1st class dev platform, yes, even in the upcomming Windows 8, "simple" (obvious) tools like this in Visual Studio definitely earn developer buy in!

by Kelps Leite de Sousa | October 07 2011

Great extension. Only things missing now are #region and better intellisense for /// on doc comments. Anyway, deserves a 5 stars.

1 - 20 of 66 Items   
Sign in to Start a Discussion


  • collapse to definitions
    2 Posts | Last Post April 29, 2013
    • Is there a way to collapse everything to their definitions? That would be great..
    • press control + M, L with the js file open in the editor
  • Custom collapsible regions
    4 Posts | Last Post April 29, 2013
    • Like regular .Net languages, does this extension support custom collapsible code blocks, e.g.
      //#region My block
      Code here
      //#endregion
      
      or 
      //region My Block
      Code here
      //endregion
    • Yes, it does.  It should be documented but it is not.
    • @rich: how does it work? I tried 
      
      
      //#region My block
      Code here
      //#endregion
      
      and
      
      //region My Block
      Code here
      //endregion
      
      I didn't have success with either one of these ... 
      
      Thanks
      
    • I made this account just to answer this question as I've had the same problem. So in case anybody else runs into this, this is my solution.
      Use javascript curly brackets to enclose your code and place a comment above to know what you are making collapsible.
      //My region
      {
      //lines of code
      //lines of code
      //lines of code
      }
      
      these will collapse and don't appear to affect anything else. javascript just treats this a simple compound statement.
  • Is this avaliable for Visual Studio 2012
    7 Posts | Last Post April 19, 2013
    • I really like the jscript word highlighting extension. However it is not working in Visual Studio 2012. Will there be an updated version of the suite.
    • I second this. 
      Tried to force it into VS 2012 with no success. I feel crippled without it..
    • I'm with you guys. It's driving me a little nuts.
    • +1 for the 2012 support
    • Could really use this in 2012.
    • Yes, I'm waiting too for it to be available in Visual Studio 2012...
    • +1, really useful extension!
  • jQuery vsdoc generator is outdated
    2 Posts | Last Post September 13, 2012
    • The last version of jQuery offered by that vsdoc generator (http://damianedwards.com/vsdoc) is 1.6.2, which is two major revisions out of date.  I'd either find a new tool, incentivize that guy to update his tool, or just offer your own vsdoc file for the newest version of jQuery.
    • you can download the latest vsdocs here:
      http://appendto.com/community/jquery-vsdoc
  • Link to source is invalid?
    1 Posts | Last Post August 23, 2012
    • I'm looking to find the source code for the extension, but the link on the project home is invalid.
      
      Thanks!
  • do u update vesion to support sth like this!
    1 Posts | Last Post January 17, 2012
    • I want like this:/// <returns type="Array/Number" />
      <param name="a" type="String/undefined"></param>
  • Visual Web Developper 2010 Express
    1 Posts | Last Post December 22, 2011
    • Doesn't seem to install on visual webdevelopper express 2010 (SP1).
      Error: This extension is not installable on any currently installed products.
  • If commentary has Chinese,you will see garbled if you reference!
    1 Posts | Last Post November 16, 2011
    • 
      function $(tag) {
          /// <summary>
          /// return:ele
          /// </summary>
          /// <param name="tag" type="str">标签名</param>
          return document.getElementById(tag);
      }
      /// <reference path="tools.js"/>
      Reference tools.js, the $ commentary has Chinese; Write $ ,you will see garbled;
      if tools.js is not utf-8,it`s wrong.Now I can not set 'utf-8' with tool.js
      $(tag)
      return:ele
      ???K???
      
      
  • Configure formatting?
    1 Posts | Last Post September 09, 2011
    • Is it possible to configure formatting? What I really want - the main reason that I installed this extension - is the ability to pretty print JSON files. When working with large-ish (e.g. 500 line) JSON files, they are always returned to me on one *long* line, which is impossible to read. There are other JSON pretty printers out there, but I would like to be able to do this in VS. 
      
      As it stands, opening a JSON file (which I have typed to be represented the same as JavaScript) and selecting Edit > Advanced > Format Document just results in spaces being inserted after commas and some braces. 
  • Comment AutoComplete
    1 Posts | Last Post August 25, 2011
    • The comment auto-complete ///<summary></summary> functionality worked immediately after I installed but has since stopped working. Are there any known conflicts with out extensions or ReSharper?
      I have the JScript Editor as well as Javascript Parser, and ReSharper installed.
1 - 10 of 18 Items