Over-enthusiastic Intellisense in VS2010 - can I tweak it?
Posted
by CJM
on Stack Overflow
See other posts from Stack Overflow
or by CJM
Published on 2010-05-19T11:24:52Z
Indexed on
2010/05/19
11:30 UTC
Read the original article
Hit count: 501
intellisense
|visual-studio-2010
Since I have upgraded from VS2008 to VS2010, I've been having an increasingly infuriating battle with the Intellisense.
For example, when specifying CSS styles, when I press Enter to start an new line, Intellisense (appropriately) lists available Styles to me. And if I select color
and then type ':', it presents a list of color presets - often helpful. However, if I type in a space (I like them for readability) or if I type '#' to enter RGB values, it selected the default Intellisense selection, in this case inherits
.
Another example is in an ASP.NET page - say I am concatenating strings, I type myString =
, I get an Intellisense pop-up. If I type space or '"' (to enter a literal) or '.' (so select a property or method within a WITH
block), the Intellisense selects the first entry in the list.
I can dismiss the Intellisense pop-ups with escape but it makes it incredibly slow to code.
This behaviour is different to my VS2008 set-up. I can't seem to find any way to configure Intellisense to behave differently... I really only want it to select and Intellisense entry when I type or ... at least, certainly not when I type '"' or ' ' or '.'!
© Stack Overflow or respective owner