JavaScript IntelliSense list in VS 2013 for a custom script TOO LONG. How to suppress some items?

孤街醉人 提交于 2019-12-05 15:41:52

I guess this has something to do with the ReSharper extension and its IntelliSense settings which override Visual Studio's IntelliSense settings.

dhtml.js, for example, is an internal ReSharper file where all standard browser objects and properties are declared. At lest the top X properties/methods in your IntelliSense dropdown dialog are picked up from this file.

Do you have ReSharper installed by any chance? If so try the following steps

  1. Disable javascript intellisense in the ReSharper options dialog.

  2. Explicitly enable Visual Studio's javascript intellisense. (ReSharper would have disabled this option by default).

  3. Restart Visual Studio.

You should now have concise and compact intellisense hint lists.

To improve your intellisense experience, open solution explorer and add a new js file '_reference.js' to the scripts folder. Open this file (with VS), right click anywhere and enable the autosync option.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!