Questions tagged [intellisense]

IntelliSense is Microsoft's implementation of automatic [code-completion], best known for its use in the Microsoft Visual Studio integrated development environment.

IntelliSense is Microsoft's implementation of autocompletion, best known for its use in the Microsoft Visual Studio integrated development environment. In addition to completing the symbol names the programmer is typing, IntelliSense serves as documentation and disambiguation for variable names, functions and methods using reflection.

3749 questions
61
votes
3 answers

How to hide public methods from IntelliSense

I want to hide public methods from the IntelliSense member list. I have created an attribute that, when applied to a method, will cause the method to be called when its object is constructed. I've done this to better support partial classes. The…
Jordan
  • 8,881
  • 8
  • 63
  • 130
60
votes
9 answers

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.
aBetterGamer
  • 4,951
  • 2
  • 16
  • 19
60
votes
17 answers

VS2013 Intellisense constantly stops working

I have Visual Studio 2013 with no plugins or anything fancy. Whenever I'm coding, every so often (maybe once every half hour) intellisense randomly stops completing my sentences or popping up at all when I press Ctrl+Space. I have tried…
blizz
  • 3,791
  • 5
  • 30
  • 51
58
votes
4 answers

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?
Shahin
  • 11,703
  • 37
  • 120
  • 199
56
votes
17 answers

Visual Studio C# IntelliSense not automatically displaying

Just recently, my Visual Studio 2010 stopped displaying IntelliSense suggestions automatically while I am typing. I can still press ctrl+space to get it to work, but it doesn't automatically show a list of suggestions like it used to. I have…
Drewmate
  • 1,899
  • 1
  • 17
  • 27
52
votes
3 answers

How to disable IntelliSense in VS Code for Markdown?

I don't want word completion for Markdown files in Visual Studio Code, how do I disable it? Ideally, for Markdown only but in the worst case, even a global switch would be good.
Borek Bernard
  • 43,410
  • 50
  • 148
  • 224
51
votes
7 answers

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 extension (.tt) Isn't there anyway to say to Visual…
Vitor Silva
  • 15,284
  • 8
  • 30
  • 27
51
votes
7 answers

No IntelliSense for C++/CLI in Visual Studio 2010?

I just moved from Visual Studio 2008 to Visual Studio 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 appears: IntelliSense for C++/CLI is not available Uh, has…
Sam
  • 26,538
  • 45
  • 157
  • 240
48
votes
22 answers

MVC Razor view Intellisense broken in VS 2013/2015/2017

I have an existing project written in VS2010 which when loaded in VS2010 works perfectly. When I load this same project in VS2013 the MVC Razor views contain lots of errors as if the config file is missing from the views folder. It appears to have…
War
  • 8,164
  • 2
  • 43
  • 89
48
votes
3 answers

Completely Disable Formatting and Completion in ReSharper for Visual Studio

I like a lot of the features that ReSharper offers, but I absolutely can't stand the formatting and code completion it does. It trips me up every step of the way. In javascript it's constantly stealing braces attempting to reformat my code making…
47
votes
2 answers

Hiding namespaces containing only internal types in a class library?

I have a class library that has a couple of namespaces containing only internal types. However, when using the class library in an application project, the namespaces shows up in intellisense, but of course they are empty. Is there any way for me to…
Lasse V. Karlsen
  • 350,178
  • 94
  • 582
  • 779
47
votes
5 answers

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 MVC project? Please note that the class library…
JarrettV
  • 18,345
  • 14
  • 42
  • 43
47
votes
12 answers

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 anything, and the keys that respond are the…
Chuck Le Butt
  • 43,669
  • 58
  • 179
  • 268
45
votes
17 answers

Intellisense in IntelliJ no longer working

I'm currently running IntelliJ IDEA 13.1. While running IntelliJ 13 intellisense/autocomplete stopped working. I tried upgrading and it still doesn't work. I can explicitly invoke code completion using ctrl+space. I looked in Settings->Editor->Code…
earthling
  • 4,764
  • 6
  • 43
  • 86
43
votes
5 answers

VisualCode Shortcut to display autocomplete list before typing in MacOS

I am trying to display all possible words after putting the cursor in certain place in the code. The autocomplete list appears when I start writing/typing: However, I would like to see all suggested words even before typing. I tried [Cmd] +…
Abdennour TOUMI
  • 64,884
  • 28
  • 201
  • 207