Tagged Questions
IntelliSense is Microsoft's implementation of autocompletion, best known for its use in the Microsoft Visual Studio integrated development environment.
67
votes
9answers
6k views
How do you get JavaScript/jQuery Intellisense Working in VS 2008?
I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery ...
47
votes
11answers
21k views
Why is SQL Server 2008 Management Studio Intellisense not working?
I'm being driven to insanity trying to figure out why Intellisense just fails to work at all. The server I'm using is local and is 2008, the database is set to 2008 compatibility, Intellisense is on ...
34
votes
8answers
6k views
How to document thrown exceptions in c#/.net
I am currently writing a small framework that will be used internally by other developers within the company.
I want to provide good Intellisense information, but I am not sure how to document thrown ...
24
votes
10answers
21k views
How to get intellisense to reliably work in Visual Studio 2008
does anyone know how to get intellisense to work reliably when working in C/C++ projects? It seems to work for about 1 in 10 files. Visual Studio 2005 seems to be a lot better than 2008.
Edit: Whilst ...
21
votes
11answers
7k views
Python and Intellisense
Ok newbee question: Is there an equivalent to 'intellisense' for Python?
Perhaps i shouldn't admit it but I find having intellisense really speeds up the 'discovery phase' of learning a new language. ...
21
votes
4answers
7k views
Anyone found a PowerShell Syntax highlighting or IntelliSense plugin for Visual Studio?
Has anyone found a plugin for Visual Studio to allow for PowerShell syntax highlighting or IntelliSense? If not, does anyone have any idea why not? I keep hoping someone else with copious free time ...
21
votes
7answers
7k views
Eclipse Style Function Completions in Emacs for C, C++ and JAVA?
How Do I Get Eclipse Style Function Completions in Emacs for C, C++ and JAVA?
I love the power of the Emacs text editor but the lack of an "intellisense" feature
leaves me using Eclipse.
20
votes
6answers
3k views
Where is Visual Studio autocomplete for JQuery 1.4?
I can't find the Visual Studio autocomplete file for JQuery 1.4. Googling for jquery-1.4-vsdoc or jquery-1.4.min-vsdoc turns up nothing.
17
votes
3answers
16k views
How to enable jQuery support in Aptana Studio 3
How Can I Enable jQuery In Aptana Studio 3 (beta) ?
I didn't see any document for this version.
Does Aptana Studio 3 (beta) Supporting jQuery?
17
votes
11answers
15k views
SQL Server Management Studio 2008 Intellisense
I just installed SQL Server Express 2008 because of intellisense feature. It worked at first but than it stopped working. Looking for the option to check and later consulting Google I have found that ...
16
votes
4answers
630 views
VS2010 IntelliSense inside text/x-jquery-tmpl script templates
I've been using jQuery templates which I absolutely love to use. The only drawback from an IDE standpoint is the lack of HTML IntelliSense inside the script tag. Is there a way to fool VS2010 so ...
16
votes
3answers
5k views
Need razor view engine auto-complete to work in a class library?
We have a modular architecture where we have some views (cshtml) files in a separate project (class library). How can we get the syntax highlighting and autocomplete to work when the project isn't an ...
16
votes
5answers
9k views
Visual Studio 2008 - Add Reference
When adding a DLL as a reference to an ASP.Net project, VS2008 adds several files to the bin directory. If the DLL is called foo.dll, VS2008 adds foo.dll.refresh, foo.pdb and foo.xml. I know what ...
15
votes
6answers
19k views
No IntelliSense for c++/cli in visual studio 2010?
I just moved from Visual Studio 2008 to 2010 (final), and noticed one major flaw:
When I try to use AutoComplete in a C++ Source file for managed c++, a small note in the footer appers:
intellisense ...
14
votes
5answers
3k views
Can I get intellisense in powershell?
Just starting out with powershell, I would love to have intellisense support for writing powershell scripts. Tab-completion works great so you would think it would exist somewhere, but the only thing ...
14
votes
2answers
967 views
Why are DispatcherObject.CheckAccess() and VerifyAccess() hidden from Intellisense?
The System.Windows.Threading.DispatcherObject class (which DependencyObject is based on) contains a useful function, called CheckAccess(), that determines whether or not the code is running on the UI ...
13
votes
5answers
2k views
Meaning of visual studio intellisense icons
I've been using Visual Studio for a number of years now and obviously find intellisense very useful.
However I've always been "guessing" at what the little icons actually mean such as this icon ...
13
votes
3answers
1k views
How can I get Aptana's code assist to work with Google Maps API v3?
There's a Google Maps API v3 Visual Studio Intellisense Helper, which presumably works great for Visual Studio, but Aptana (based on Eclipse) uses a different JavaScript documentation format - ...
13
votes
2answers
5k views
vim omnicomplete vs. vim intellisense
Are Vim OmniComplete and Vim Intellisense mutually exclusive or complimentary? I'm a bit confused by conflicting terminology and implementations, such as these C++ OmniComplete and C++ Intellisence ...
12
votes
4answers
4k views
How to turn on Visual Studio 2010 .css Intellisense on .less file
Does anyone know how to enable css intellisense in a non .css file extension? I have a .less file that is basically a .css file but visual studio will not use .css intellisense on the file.
12
votes
2answers
209 views
Possible to keep a method from showing up in intellisense?
Say I have a class and I want to deprecate a method. Is it possible to have that method not show up in intellisense so that people won't be temped to use it? I just want existing code that uses it ...
12
votes
4answers
6k views
Eclipse Intellisense?
How do I tell Eclipse to automatically make suggestions as I type? I'm looking for a Visual Studio Intellisense-like feature with Resharper.
Currently I have to press CTRL+Space each time.
12
votes
5answers
2k views
How to get VS10 Intellisense to complete suggested member on enter?
I have been trying out the CTP Beta 1 of Visual Studio 2010 and I hate that VS10 doesn't autocomplete the best match when i press 'enter', or '.'. Visual Studio 2008 did this, and I haven't been able ...
12
votes
7answers
2k views
Delphi code completion performance
I have a few large (~600k lines of code) Delphi projects. They include some custom components which our team has developed.
Often, when I call up code completion with ctrl+space or just by pressing ...
12
votes
3answers
1k views
Why doesn't VS 2008 display extension methods in Intellisense for String class
Since String implements IEnumerable<char>, I was expecting to see the Enumerable extension methods in Intellisense, for example, when typing the period in
String s = "asdf";
s.
I was ...
11
votes
2answers
266 views
How do I get auto-suggestions for array options when typing in Vim?
Let's say I type
a = [1, 2]
in a .py file in vim and when I type "a." and hit TAB, I would like to get suggestion menu that is related to lists.
Edit 1 in response to Robin's comment:
I think ...
11
votes
4answers
439 views
ASP.NET Intellisense doesn't work in attributes
It seems that Intellisense just doesn't work within attributes in an ASP.NET page. I really like strong typing, because I like Intellisense, and so I generally make sure to bind to a strongly typed ...
11
votes
5answers
2k views
Adding line breaks to comments for Intellisense
Does anyone know how to insert a line break into a summary comment in order for the line break to be reflected in Intellisense documentation?
To clarify, assume code documentation..
/// ...
11
votes
5answers
4k views
how can I get intellisense in a T4 template?
When trying out these tutorials (T4 Tutorial: Creating reusable code generation templates) I noticed that although I was using plain c# I didn't get any intellisense, probably because of the file ...
11
votes
4answers
381 views
Is there any trick that allows to use Management Studio's (ver. 2008) IntelliSense feature with earlier versions of SQL Server?
New version of Management Studio (i.e. the one that ships with SQL Server 2008) finally has a Transact-SQL IntelliSense feature. However, out-of-the-box it only works with SQL Server 2008 instances.
...
10
votes
2answers
294 views
What makes this header file slow VS2005 to a crawl? (IntelliSense exonerated?)
I was experimenting with a C++ project using the Compile Time Hashing technique I found here. The macros work as expected, and the compile time is reasonable, but the 64 recursive macros seem to ...
10
votes
3answers
2k views
jquery intellisense vs2010 mvc3
jquery intellisense does not work for me unless I place in the page. I thought putting it in the _Layout.cshtml would be sufficient but it's not.
I have to do this on every page, partial etc.
is ...
10
votes
6answers
787 views
Visual Studio 2010: Editor stops responding to keyboard
I've got this very odd bug that appears to be a quirk in Visual Studio 2010: Sometimes, when moving the cursor into double quotes of a CSS style="" attribute the cursor refuses to move. I can't type ...
10
votes
4answers
204 views
Visual Studio 2008 Intellisense Priority Settings
Is there someway to get VS 2008 intellisense to default to Properties over Classes in a name collision?
Example:
Within my scope I have a property Foo, but I'm also using a class Foo. When writing ...
10
votes
2answers
540 views
Visual Studio 2010 insists on inserting spaces in JavaScript
Visual Studio 2010 inserts a space between the keyword "function" and the following parenthesis. Is it possible to turn this off? i.e.
Visual Studio formats my code like:
var vsfn = function () { ...
10
votes
3answers
361 views
Visual Studio/RAD support for coding directly in IL?
For the longest time I've been curious to code in Intermediate Language just as an academic endeavour and to gain a better understanding of what's happening "under the hood".
Does anybody provide ...
10
votes
2answers
1k views
Hiding GetHashCode/Equals/ToString from fluent interface classes intellisense in Visual Studio for C#?
I have a fluent interface for an IoC container registration process, and this contains some classes that are used to build up the registrations.
For instance, I can do this:
...
10
votes
3answers
2k views
Embedding Intellisense Xml Documentation in Assembly?
I have an assembly containing very thorough XML-based documentation, which is used through Sandcastle to generate the help-files for the product. We also use the output XML files for providing proper ...
9
votes
1answer
141 views
How to write C++ comments that show up in Intellisense?
I'm programming in C++ using Visual Studio 2010 Ultimate. I want to document some functions and I want the documentation to show up in Intellisense.
According to MSDN, I just need to put the comment ...
9
votes
2answers
538 views
Javascript Intellisense in Razor View Engine child pages
I'm after a way of getting my referenced .js files in my 'master' cshtml files to come through to the 'child' cshtml files.
I have something like this in the master file, so the .js files always get ...
9
votes
2answers
397 views
Visual Studio Free addin or resharper plugin to show constant value in tooltip
Is there a free addin or resharper plugin that will let me see the actual value of a constant value when you hover over a reference to it ?
Since the compiler forces const fields or properties to be ...
9
votes
3answers
698 views
How can I make VS2010 insert using statements in the order dictated by StyleCop rules
The related default StyleCop rules are:
Place using statements inside namespace.
Sort using statements alphabetically.
But ... System using come first (still trying to figure out if that means just ...
9
votes
4answers
357 views
Visual Studio - easy way to bring up type definition as source code
Oftentimes I want to bring up a system class in a source view, so that I can browse the properties and methods exposed by the class. Below is the screenshot of what I mean:
Usually I do this by ...
9
votes
1answer
294 views
Why no intellisense when LINQ statement has no where clause?
Can anyone tell me why I do not get intellisense with this code:
var testDocuments = (from u in db.TestDocuments
orderby u.WhenCreated descending
select u).
...
9
votes
6answers
636 views
Netbeans Intellisense for Rails
Has anybody figured out a way to make the Netbeans intellisense for ruby and rails better? It either has too many options in the list (which I understand is a problem since it is a dynamic language). ...
9
votes
7answers
3k views
Visual Studio 2008 losing intellisense for ASCX with CodeBehind (but works for CodeFile)?
I have the following definition at the top of my .ASCX file:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ArticleView.aspx.cs" Inherits="MyNameSpace.ArticleView" %>
In that ...
9
votes
4answers
1k views
Can I order the enum values in intellisense?
I have an eum type with 5 members. Is it possible to tell intellisense to order them the way I want?
public enum numbers
{
zero,
one,
two,
three,
four
}
Intelisense shows (in ...
9
votes
3answers
2k views
Enabling Intellisense for Custom Sections in .config Files
When editing .NET config files (app.config, web.config, etc) in Visual Studio, I get Visual Studio's intellisense to guide me when choosing my application's settings. If I add a custom configuration ...
9
votes
6answers
5k views
Adding additional js files breaks jQuery IntelliSense
I have been using jQuery IntelliSense in VS2008 and it has been great. Recently I added a reference to jQuery UI and since then, the jQuery IntelliSense has went away. I found that once you ...
8
votes
2answers
274 views
Is there a way to make Visual Studio 2010 autocomplete selectors based on my HTML markup?
Imagine I have this:
<div id="wrapper">
</div>
In my CSS file, when I type in:
#
Is there a way to make Visual Studio show me intellisense of all id's in my HTML markup?