intellisense

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

守給你的承諾、 提交于 2019-12-07 07:56:42
问题 I will start by first asking 2 questions so If anyone knows it doesn't have to read this long post: But how do I suppress enormous list of undesired items in IntelliSense list for a custom JavaScript file (be it .js or .ts - typescript with compilation)? How can I fine control what I would need? _references.js seems like a good starting point (for global reference) Can anybody explain how .validate-vsdoc.js and .intellisense.js and /// When I watched Mads Kristensen's video Visual Studio: C#

No more Intellisense for ASP tags visual studio 2010

佐手、 提交于 2019-12-07 06:26:00
问题 I'm not getting intellisense for asp tags anymore in websites or web applications. There is a check mark for the following: Tools->Options->Text Editor->C#->General->Auto list members Tools->Options->Text Editor->C#->General->Parameter information Tools->Options->Text Editor->C#->Intellisense->Show completion list after a character is typed My dev environment is server 2008 R2 64 bit, VS 2010 Ultimate (ver 10.1.30319.1 RTMRel), I don't have resharper installed, but I do have AnkhSVN installed

Can you get ReSharper to display exceptions in Intellisense?

懵懂的女人 提交于 2019-12-07 05:49:35
问题 I'm a fan of the overridden Intellisense behaviour provided by ReSharper. However, I can't seem to get it to display exceptions (anything with the /// <exception cref="SomeExcpetionName"/> xml comment). Does anyone know a way to enable this functionality? NOTE: This is not an issue related to not including the xml comment file from a dll as it is happening for all classes (even core .Net ones). Plus, any of my own libraries, which I have ensured the XML file is included, are not displaying

vs 2017 intellisense not working C# and XAML

人盡茶涼 提交于 2019-12-07 02:35:37
问题 I have a Strange issue that I can't seem to fix, my Intellisense for XAML is no longer showing up and the code behind is only showing the premade Members. The Classes and Methods I have made are not showing up. Also Visual Studios is not recognizing other pages and wont recognize Navigation either. I have tried going to Tools>Text Editor>C#>Intellisense -Statement completion and checking the boxes Auto list members and Parameter information. I also tried to clear out the cache. From what I

IntelliSense in .fsx and dynamically loaded assemblies

社会主义新天地 提交于 2019-12-07 01:58:47
问题 When dynamically referencing assemblies in .fsx using #I and #r , VS highlights the following usages of imported types and writes "The namespace or module 'XXX' is not defined". Is it ok? For example, in the following code #I @".\Tools\FAKE" #r "FakeLib.dll" open Fake Target "Hello" (fun _ -> trace "hello!") Run "Hello" VS highlights Fake and says "The namespace or module 'Fake' is not defined", it also highlights Target and Run . I have this problem in VS 2010 SP1 and in VS 11 CTP. This

JavaScript Intellisense in VS2010 extremely slow and memory hungry

混江龙づ霸主 提交于 2019-12-07 01:46:45
问题 I'm having 2 problems with the Intellisense in VS2010. Our project is very large, it consists of a couple hundred .js files comprising a couple hundred thousand lines of code. After using VS2010 for as little as 5-10 minutes the memory usage can easily climb to over 1gb, which causes a significant slow down, and every time I CTRL+TAB between files "Updating JavaScript Intellisense" appears in the status bar. All of our .js files have tags so Intellisense knows where to find related code, each

Visual studio code auto-complete

℡╲_俬逩灬. 提交于 2019-12-06 22:27:39
问题 I have just downloaded unity and saw that now it supports Visual studio code, I downloaded it and made it the default editor. After trying to edit a script, it prompted me to download c# extension and I did, but there is no auto-complete for unity functions. How can I get that? I'm on Mac. Any help is appreciated. 回答1: Maybe too late, but for future comers ... There is an extension now for visual studio code called MonoBehaviour Snippets by Rachod Petchpho. Press Ctrl+shift+x in the IDE to

Error “system” is ambiguous? [closed]

三世轮回 提交于 2019-12-06 19:53:25
Closed. This question is off-topic . It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I have a simple program, and it works fine, but the system("CLS"); and system("pause"); statements have red IntelliSense lines underneath them. When I move my cursor over them it says Error "system" is ambiguous. What is causing that? Here is my code: #include <iostream> #include <cmath> using namespace std; int main() { int choice = 0; const double PI = 3.14159; double sideSquare = 0.0; double radius = 0.0;

C++ Formatting like Visual Studio C# formatting

半世苍凉 提交于 2019-12-06 17:25:50
问题 I like the way Visual Studio (2008) formats C# code; unfortunately it seems it doesn't behave in the same way when writing C++ code. For example, when I write a code in this way: class Test { public: int x; Test() {this->x=20;} ~Test(){} }; in C# (ok this is C++ but you can understand what I mean), this part: Test() {this->x=20;} Will become: Test() { this->x=20; } This is obviously a stupid example, but there are a lot of things where putting brackets in correct position, indenting code and

Intellisense not working when trying to define an xmlns in VS2012

二次信任 提交于 2019-12-06 15:33:05
I am trying to add a namespace to one of my usercontrols in xaml. In visual studio 2010 I could just type xmlns:blahblah= and it would add the quotations and offer me a whole list of suggestions of assemblies to add as namespace definitions. In visual studio 2012 I start typing it out and I'm immediately getting xaml errors as I'm typing and no suggestions. The problem is, I don't know what the exact ones I need to add, so I'm a little dependent on the intellisense. Regular intellisense works just fine. Why is this? The problem seems to have been the fact that I was using .NET 4.0 Client