All Questions
Tagged with visual-studio-code intellisense
1,215 questions
0
votes
0
answers
79
views
When workspace include paths are defined, intellisense doesn't work any more on user ones
For coding with C++, I'm using the Microsoft provided C/C++ extension for Visual Studio Code.
I defined the paths from settings UI.
Include paths that are common to all my project are defined in the ...
3
votes
1
answer
149
views
In a VSCode / CMake Tools project, can I configure Intellisense to exclude source files not included in the current CMake preset?
I have a VSCode project using CMake Tools that utilizes CMake presets. Each preset corresponds to a different target platform, and therefore includes a different set of source files to be compiled.
...
0
votes
0
answers
16
views
Visual Studio Intellisense remove helper window [duplicate]
When I am typing in Visual Studio Code, and mainly when I'm writing jQuery code this window pops up and blocks my view and is more annoying than anything. I cant figure out what setting I need to ...
0
votes
1
answer
42
views
How to get full Intellisense/autocomplete for JS libraries in VSCode web editor
I'm programming a basic chatroom using the PeerJS library, and I would like to have autocomplete functional for that library. However, I am using the web version of VSCode because I am using a shared ...
0
votes
1
answer
279
views
Tailwind CSS Intellisense autocomplete does not work in React+Vite project
Visual Studio Code Insider .v1.100.0-insider. Tailwind CSS Intellisense v0.14.15. Tailwind v3.4.17 installed via npm. Windows 11 64-bit.
Tailwind config:
/** @type {import('tailwindcss').Config} */
...
0
votes
1
answer
46
views
How to change vs code's intellisense behaviour?
I'm using vs code and C# v2.72.27 extension.
Every time I type for (int i and hit space, the i is likely to be automatically replaced with a capital I, a delegate from Unity.Entities package. Likewise,...
1
vote
2
answers
80
views
How to get IDE intellisense autocompletion through JSDoc type hints with TypeScript packages?
I just noticed that we can get IDE intellisense autocompletion through JSDoc type hints like this (from Vite config documentation):
/** @type {import('vite').UserConfig} */
export default {
// ...
}
...
0
votes
1
answer
49
views
How do I get VSCode Intellisense to work with my python class factory method?
I have a python class factory method that I use to create a commonly implemented derived class of django.tests.TestCase and django.tests.TransactionTestCase:
from typing import Type
from django.test ...
0
votes
0
answers
44
views
Can I use bcc64x for IntelliSense to make vscode parse Borland C++ language extensions?
Motivation
I'm on a project that uses the Borland C++ compiler family, but I would like to use Visual Studio Code as editor. Borland has several language extensions that cause a standard C++ compiler ...
0
votes
0
answers
21
views
VSCode intellisense based off JSDoc "module:Module_Name.Class_Name"
I have been trying to make VSCode's intellisense work with the following project: https://github.com/cmu-geometry/ddg-exercises-js
without much success.
It's all good if I open the root folder and add ...
0
votes
0
answers
18
views
VS Code MSSQL extension Intellisense problem for object hints
If I type something in Management Studio like
SELECT * FROM schema.foo_bar
I will get hints for objects that contain the word "foo_bar" somewhere.
If I type the same in VS Code, I will get a ...
-1
votes
1
answer
51
views
adding the installation path of pytorch does not enable autocompletion
I searched both google and SO for this but did not find answers to my specific problem.
I want to enable autocompletion in VScode and already have the python extension installed with both pylance and ...
0
votes
0
answers
32
views
VS Code Intellisense and Error Highlighting for Web Components (3.0.0-alpha.10)
Is there a way to get code completion (Intellisense) to work for web components in VS Code?
I'm currently using version 3.0.0-alpha.10 of the web components library, and I always encounter red line ...
12
votes
13
answers
9k
views
VSCode Tailwind CSS Intellisense autocompletion and suggestions not working after installing Tailwind v4
I've intsalled Tailwind CSS v4 (released in Jan'25) in VSCode project (Vite):
npm install tailwindcss @tailwindcss/vite
Now the Tailwind CSS Intellisense extension in VSCode is not working. It is not ...
-2
votes
1
answer
119
views
quick fix in flutter not working for imports lines
when i press ctrl+. to show quick fix menu, it shows all widgets that i can wrap with my widget but not shows imports lines and to make import lines must write widget by me to call import line like ...