javascript - Visual Studio Intellisense methods with underscore don't appear -


i'm using vs2012, , 1 of project-wide javascript function namespaces has of exposed methods beginning underscores _, example:

var namespace = {     _amethod = function () { },     _anothermethod = function () { } }; 

i created quick vsdoc file namespace, , namespace appears, none of methods do. note: if remove _ @ beginning of methods, works charm.

// work, , show in vsdoc var namespace = {     amethod = function () { },     anothermethod = function () { }  // ^ notice no underscores }; 

is there anyway around this?

going through entire project , renaming them (even find-all) risky since these methods intertwined everything.

if go tools->options->text editor->javascript->intellisense->references there should drop down reference group (depending on type of project may need change this)

once have right group you'll noticed there default included intellisense reference files. try removing underscorefilter.js


Comments