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.

4442 questions
2
votes
0 answers

data type of variables on the right side, what are the real benefits

In languages like TypeScript, Scala, F#, etc. the type of the variables are on their right side, i.e. variableName: DataType However in C# or Java I usually start typing the Type first, the intellisense brings up the required type, then as soon as…
2
votes
2 answers

how to add method description for visual studio code?

On some methods, Visual Studio Code ( VSC ) automatically describes the intellisense suggestions like this : How can this be done for custom code, I tried finding out on the source for this name interface: and found this piece of code : /**…
Vincent Duprez
  • 3,772
  • 8
  • 36
  • 76
2
votes
1 answer

VSCode(Vetur) does not recognize customized Vue property in component

I've mounted a plugin on Vue in a main.ts file, declared its type in a plugin.d.ts file, then used it in a component.vue file. The compilation works fine, but VSCode intellisense still tells me this property does not exist. Am I missing…
2
votes
1 answer

How do I make a custom autocomplete suggestion in IntelliJ?

I want to make add a suggestion to intellij’s autocomplete to object names. Currently when autocompleting a name of a instance of a class it just autocompletes to the class name but in lower case. ExampleObject exampleObject; This has sometimes…
Jack
  • 23
  • 4
2
votes
1 answer

Visual studio is not highlighting suggestions in C# while typing

Visual Studio was working fine until I close the project, then few hours later when I reopen the Editor and I started to get this strange behavior, usually when I type return the auto suggest highlights the keyword so I just hit enter but now it…
Nathiel Paulino
  • 534
  • 6
  • 17
2
votes
1 answer

How to configure VSCode so IntelliSense works for MicroPython system libraries?

My specific question is related to MicroPython development on Pycom's GPY with Pytrack expansion board. I also have Pycom's Pymakr extension for VSCode installed as well. But I feel the question can be asked and answered more generally and I'll try…
Patrick
  • 2,044
  • 1
  • 25
  • 44
2
votes
2 answers

Nested generics in typings function

This question is about .d.ts as declarations for .js files. I'm trying to declare a function that has a generic inside a generic but I can't seem to get it right. The function is essentially an Array#forEach function for objects ({[key: string]:…
nick zoum
  • 7,216
  • 7
  • 36
  • 80
2
votes
0 answers

Auto imports in vscode-scss

I've recently started using scss and the best extension providing intellisense for scss out there seems to be vscode-scss. But I don't understand, how to make it add @use or at least @import rules automatically. It sees variables and mixins from…
Alex Chashin
  • 3,129
  • 1
  • 13
  • 35
2
votes
1 answer

VS 2010 Productivity Power Tools Disables XML Documentation on Hover

can someone verify this: the Visual Studio 2010 Productivity Power Tools extension takes away XML documentation text (on mouseover or intellisense) for types and members, when you enable their "Solution Navigator"? In other words, when I hover over…
2
votes
1 answer

missing function descriptions (IDE)

i am currently learning c++ for uni. Currently using visual studio code (primarily), visual studio enterprise and visual studio community. Im wondering if theres any way to make a description of functions show up when im typing them. When i write in…
Remi Jones
  • 45
  • 4
2
votes
1 answer

Can I use Visual Studio's Assisted IntelliSense with ReSharper's suggestion system?

Recent version of Visual Studio added AI-assisted IntelliSense. See below image the star-marked items. Many times this AI-assisted IntelliSense works great. ReShaper's suggestion system is more powerful in general and I always stick to it. My…
Just a learner
  • 26,690
  • 50
  • 155
  • 234
2
votes
1 answer

Treating warnings as errors in Visual Studio 2019 for build but NOT intellisense

I've just started using true in my csproj files, and when messing up a bit of code, I've found myself taking quite a bit of extra time hovering over all the different red lines to find the one that's…
2
votes
0 answers

Visual Studio 2019 Intellisense complains that it can not open many of the system headers

So I got a new PC yesterday and moved my Projects to it by simply copying the Project folders. Now if I open the Projects with Visual Studio 2019 Enterprise like before. Visual Studio shows it can open source files like algorithm, locale and so on.…
2
votes
1 answer

IntelliSense with C# (Unity) in VSCode disabling space to autocomplete

I like intellisense however I don't like how when I finish typing something like a method name that has the name "Press" tries to autocomplete to "buttonpress" and when I press space bar to go to the next word or part of the code, it autocompletes…
2
votes
1 answer

Is it possible to type-check only imported libraries (Typescript, VSCode)?

Basic question: Is it possible to type-check only imports? I do want to know TS: property 'id' does not exist on type 'Stripe.customer' (for example) but not on my own objects, like property 'prop1' does not exist on type '{}' Background I'm…
ultraGentle
  • 5,084
  • 1
  • 19
  • 45
1 2 3
99
100