Edited Unassigned: No completions for bson.Long [958]
MongoDB does:exports.Long = require('bson').Long;bson does:[ './binary_parser' , './binary' , './code' , './db_ref' , './double' , './max_key' , './min_key' , './objectid' , './symbol' , './timestamp'...
View ArticleEdited Unassigned: No completions for require('mongodb').MongoClient [946]
It's doing;[ 'commands/base_command' , 'admin' , 'collection' , 'connection/read_preference' , 'connection/connection' , 'connection/server' , 'connection/mongos' , 'connection/repl_set/repl_set' ,...
View ArticleEdited Unassigned: isense: async [944]
```var a = require('async');async.map(['file1','file2','file3'], fs.stat, function(err, results){// results is now an array of stats for each file});```a.parallel -- shows sig helpa.map doesntsame w...
View ArticleCreated Unassigned: Exception from JSON editor [977]
Might be something about our project system causing this:System.NullReferenceException: Object reference not set to an instance of an object. at...
View ArticleCreated Issue: IsDocumentInProject can't find files with relative path [978]
Relative files paths are turned into Directory files paths (a separator is added at the end) so the lookup in _diskFiles fails, because files in that dictionary don't end with a separator.
View ArticleCreated Issue: Hang attempting to reenter UI thread [979]
We are not properly detecting that we are already on the UI thread resulting in a hang.
View ArticleEdited Issue: IsDocumentInProject can't find files with relative path [978]
Relative files paths are turned into Directory files paths (a separator is added at the end) so the lookup in _diskFiles fails, because files in that dictionary don't end with a separator.
View ArticleEdited Issue: lodash intellisense not working at top level [916]
```var _ = require('lodash');```We don't get intellisense when we use code like this (which is what people would write), we only see one member in the completion list when we type `_.`, and that's for...
View ArticleEdited Issue: Can't go to definition formidable.IncomingForm [956]
```var formidable = require('formidable'), http = require('http'), util = require('util');var form = formidable.IncomingForm();```Put cursor on the last line, on IncomingForm, and press F12. Can't go...
View ArticleCommented Issue: require intellisense completion list doesn't contain newly...
If you add JS files to your project, you don't see them when you type `require(`.You need to close and reopen the solution for them to appear.Comments: It appears that it's a similar situation for...
View ArticleEdited Issue: missing completions and parameter help for restify [963]
In the following code:```var restify = require('restify');var server = restify.createServer({ name: 'myapp', version:...
View ArticleCommented Issue: missing completions and parameter help for restify [963]
In the following code:```var restify = require('restify');var server = restify.createServer({ name: 'myapp', version:...
View ArticleClosed Issue: VS crashes while typing in the editor after heavy usage of...
Configuration:Win8.1 with all the latest update, CHS, x64. Node.js x64VS 2013 Ultimate ENUNTVS build 20509 Azure Tools 2.3 Repro steps:- Installed package 'Request'- typed in some sample code from the...
View ArticleCreated Issue: azure has unapplicable completions [980]
When using blob service, you'll see completions for the other services as well.Example:```var azure = require('azure');var blobService = azure.createBlobService('',...
View ArticleEdited Issue: Hang attempting to reenter UI thread [979]
We are not properly detecting that we are already on the UI thread resulting in a hang.
View ArticleCreated Issue: Formating document fails [981]
Open a document in ntvs project. Format the document and you'll get a 80020101 error.```Ctrl-K,Ctrl-D```
View ArticleCreated Issue: mocha exports all have unknown types [982]
This is using the [require interface](http://visionmedia.github.io/mocha/#require-interface) of mocha, since I don't expect completion to work at all with implicitly injected members in other styles....
View ArticleCreated Issue: socket.io - 'on' is missing in completions [983]
```var sio = require('socket.io').listen(80);sio.sockets.on```There's no member `on` in the member list for `sockets`. Most other stuff seems to be there, just not this.
View ArticleEdited Feature: Node.js project templates don't support NuGet [622]
I would like to use the NuGet packages from DefinitelyTyped to install TypeScript definition files.Unfortunately the Node.js projects don't support NuGet.
View ArticleEdited Feature: NuGet integration for TypeScript support [716]
We need to investigate NuGet integration support for installing TypeScript files. That includes looking into if we can push the install directly into typings instead of having a scripts folder.
View Article