intellisense

Make Eclipse intellisense/auto-suggest automatic for locally scoped and member variables/methods

Hi, Is there any way to make the auto-suggest drop down list appear for locally scoped variables and local member variables/methods without having to push ctrl+space? Like Visual Studio does? It appears automatically for members of objects after getting as far as typing 'object.' I'm finding myself typing a couple of letters and hittin...

Intellisense and context help for sys stored procedures - bugs or by design ?

SQL Server 2008 R2 Dev Execution in SSMS of: 1) use AdventureWorksDW; GO; sp_cdc_enable_table 'dbo', 'FactInternetSales', @role_name=NULL, @supports_net_changes=0 succeeds. Why does execution of 2) sp_cdc_enable_table 'dbo', 'FactInternetSales' --, @role_name=NULL, @suppo...

How do I turn off intellisense for javascript?

While editing javascript content VisualStudio is starting to bug me with how it keeps inserting highlighted suggestions. For example it keeps inserting valueOf( if I type val(. This is really annoying. I want to invoke intellisense manually just like I can with C#, is there any way of turning off the auto-complete suggestion or at least...

In .Net, how do I decorate a class with an intellisense tip?

I want to be able to decorate classes and methods with the text that intellisense shows when you are instantiating the class or accessing a field. For example, I want to give usage instructions. I can't find the appropriate decoration for this. How do I do it? ...

I cann't access a namespaces in referenced assemblies in MVC Views

Some times there are an intellisense problem in the views, the namespaces in the referenced assemblies don't appear in the intellisense only in views but the do appear in .cs code files in the same project.. i've tried these ways: <pages> <namespaces> <add namespace="MyNameSpace" /> </namespaces> </pages> in the web.config fi...

xCode Inellisense not showing up for UIPopoverController

Does anyone know why my xCode intellisense does not show up when I type in UIPopoverCont... ...

Can I make R# intellisense select the first list item?

I'm using ReSharper 5.1 in VS2010, and I've been annoyed by the intellisense behavior for quite a while. It seems this is different since R# 4.5/VS2008, but I don't have that combo handy to verify. Let's say I'm typing some code: ... public Guid teamId { get; set; } ... And later on I decide I want to make teamId a read-only propert...

Browsing 'Decorated Names' in Visual Studio

I'm working on a (rather horrible) project that involves importing a C++ class hierarchy through a dll interface. One of the more horrible details requires me know the 'decorated' names for the various class elements that are exposed - mostly member functions and static data. There are many ways to achieve this - the assembly listing o...

Is there any good intellisense tool for coding Ruby?

Hello guys On Linux environment, is there any good intellisense tool, like an IDE you use for coding Ruby on Rails? And what about Windows environment, any really good smart editor? thank you ...

Are there any IDEs with HTML5 IntelliSense support?

Are there any tools that show HTML5 tags inside IntelliSense? What tools do you use to work with HTML5? ...

Viewing CSS Intellisense in partial views and Content pages - Visual Studio 2010?

I am trying to figure out how to get Intellisense for CSS to render when in a partial view or a content page. Of course I don't want it to render a runtime, as the css comes from the masterpage. I found this trick.... <%if (false) {%> <link rel="Stylesheet" href="styles.css"/> <%}%> But is there a better option? ...

SQL 2008 Express & Intellisence?

Does the SQL 2008 Express have intellisence? ...

Displaying intellisense automatically (Visual C++ 2010 Express)

One thing that has always annoyed me in Visual C++ is the fact that, unlike Visual C#, intellisense does not automatically display when a new line (or equals sign, etc) is entered, so I must press Ctrl+Space every time. Is there any way to change this? It has gotten to the point where I have even considered using something like AutoIt t...

Intellisense missing for VB.NET projects in Visual Studio 2005

In Visual Studio 2005, I can't seem to get the Intellisense menu to pop up at all when I click CTRL+Space. This seems to be limited to VB.NET files. I have tried creating new Visual C# and C# web projects, and it works fine there. There also doesn't seem to be a problem in things like CSS files in VB.NET projects. But when I create a new...

Can IntelliJ auto complete and include simple generics?

I have recently switched back to IntelliJ from Eclipse and one thing I am struggling with is the auto complete, especially when declaring Collections. *This is not a question about which IDE is better its just a question on how to perform a task if that task is possible * In IntelliJ I type List<String> listOfNames = new ArrayL (then...

Visual Studio incorrectly marking inactive code blocks when using `#ifdef`

My project has a bunch of #ifdefs. The macros used by these #ifdefs are usually passed through the command line using the '/D' option to get different build configurations. Visual studio incorrectly assumes that these macros are not defined and greys out the code blocks present inside these #ifdefs. The problem is not syntax highlighting...